X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Futil.cpp;h=fdd954d5d90824a05fb13b0dd6ad34b6ccf96aad;hp=4a32147d80d1501a5401ee52744ad2911ae661ff;hb=09f55d9665efb3b17ba7de4bae47be6989e884fe;hpb=3ccf0f7f5b1b31ac628a983a2becee6f4c4c1507 diff --git a/pv/util.cpp b/pv/util.cpp index 4a32147d..fdd954d5 100644 --- a/pv/util.cpp +++ b/pv/util.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include "util.hpp" @@ -87,19 +86,13 @@ static QTextStream& operator<<(QTextStream& stream, const Timestamp& t) std::ostringstream ss; ss << std::fixed; - if (stream.numberFlags() & QTextStream::ForceSign) { + if (stream.numberFlags() & QTextStream::ForceSign) ss << std::showpos; - } - if (0 == precision) { - ss - << std::setprecision(1) - << round(t); - } else { - ss - << std::setprecision(precision) - << t; - } + if (0 == precision) + ss << std::setprecision(1) << round(t); + else + ss << std::setprecision(precision) << t; std::string str(ss.str()); if (0 == precision) {