diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-07 08:08:38 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-10 11:19:22 +0200 |
commit | e07bde4423eee88d9f9a02b179480de3129d9c93 (patch) | |
tree | 06721980e0fd0dde3be259b89666e876c4c20dd4 | |
parent | e7cdb5b6a0e0152297369d57774caae307e1be77 (diff) |
options/group: nicely format debug timestamp
-rw-r--r-- | options/group.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/group.cpp b/options/group.cpp index 028e3e48..3f800ff0 100644 --- a/options/group.cpp +++ b/options/group.cpp @@ -141,7 +141,7 @@ group::saver_::~saver_() ini_modifiedp = false; static Timer t; const double tm = t.elapsed_seconds(); - qDebug() << QStringLiteral("%1.%2").arg(int(tm)).arg(int(std::fmod(tm, 1.)*10)) + qDebug() << QStringLiteral("%1.%2").arg(int(tm)).arg(int(std::fmod(tm, 1.)*10)).toLatin1().data() << "saving .ini file" << cur_ini_pathname; s.sync(); } |