Minor improvements

* space in message
* removed ns Simulation
* Doxygen
This commit is contained in:
Klaus Basan
2016-06-25 00:45:01 +02:00
parent dc02ff2d0c
commit 0253da8bf9
6 changed files with 11 additions and 12 deletions

View File

@@ -97,7 +97,7 @@ namespace BlackMisc
for (const auto &key : keys)
{
QString time = contains(key) ? QDateTime::fromMSecsSinceEpoch(value(key).second, Qt::UTC).toString(Qt::ISODate) : "no timestamp";
result.push_back(key + "(" + time + ")");
result.push_back(key + " (" + time + ")");
}
return result.join(",");
}