diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-02 08:14:50 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-02 08:15:09 +0200 |
commit | 2882d594fed93dc5bde67ffa33624ab29f90ac8b (patch) | |
tree | f429618850c32cc646918fe78019faefba8f6f4b /src/qt/bitcoin.cpp | |
parent | f04f1234078288d4806aaab0952d60f137337e81 (diff) |
Fix the Qt5 build after d95ba75
Sorry, my own fault this time.
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 569facb499..7c4af25edf 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -134,7 +134,7 @@ void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, cons { Q_UNUSED(context); const char *category = (type == QtDebugMsg) ? "qt" : NULL; - LogPrint(category, "GUI: %s\n", QString::toStdString(msg)); + LogPrint(category, "GUI: %s\n", msg.toStdString()); } #endif |