summaryrefslogtreecommitdiffhomepage
path: root/options
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-07 08:08:38 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-10 11:19:22 +0200
commite07bde4423eee88d9f9a02b179480de3129d9c93 (patch)
tree06721980e0fd0dde3be259b89666e876c4c20dd4 /options
parente7cdb5b6a0e0152297369d57774caae307e1be77 (diff)
options/group: nicely format debug timestamp
Diffstat (limited to 'options')
-rw-r--r--options/group.cpp2
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();
}