From c624fc205756e1bde6eafd07db406d265735f6b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 11 Aug 2017 08:08:30 +0200 Subject: [PATCH] GUI: Fix statistics --- gui/resultsview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/resultsview.cpp b/gui/resultsview.cpp index 960a0325f..165d3e810 100644 --- a/gui/resultsview.cpp +++ b/gui/resultsview.cpp @@ -144,7 +144,7 @@ void ResultsView::saveStatistics(const QString &filename) const return; QTextStream ts(&f); ts << '[' << QDate::currentDate().toString("dd.MM.yyyy") << "]\n"; - ts << QDateTime::currentMSecsSinceEpoch() + '\n'; + ts << QDateTime::currentMSecsSinceEpoch() << '\n'; foreach (QString tool, mStatistics->getTools()) { ts << tool << "-error:" << mStatistics->getCount(tool, ShowTypes::ShowErrors) << '\n'; ts << tool << "-warning:" << mStatistics->getCount(tool, ShowTypes::ShowWarnings) << '\n';