X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Futil.cpp;h=c25c373b3c23e15ff8178f06615087e0659cfd18;hp=4a32147d80d1501a5401ee52744ad2911ae661ff;hb=eb8269e3b5eebdd77e6a82d42bcfdfbc3f7613a9;hpb=3ccf0f7f5b1b31ac628a983a2becee6f4c4c1507 diff --git a/pv/util.cpp b/pv/util.cpp index 4a32147d..c25c373b 100644 --- a/pv/util.cpp +++ b/pv/util.cpp @@ -14,16 +14,14 @@ * 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" #include -#include - +#include #include #include @@ -87,19 +85,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) {