GUI: Fix statistics
This commit is contained in:
parent
ad82f49ae2
commit
c624fc2057
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue