aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-07-02 08:14:50 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-07-02 08:15:09 +0200
commit2882d594fed93dc5bde67ffa33624ab29f90ac8b (patch)
treef429618850c32cc646918fe78019faefba8f6f4b /src
parentf04f1234078288d4806aaab0952d60f137337e81 (diff)
downloadbitcoin-2882d594fed93dc5bde67ffa33624ab29f90ac8b.tar.xz
Fix the Qt5 build after d95ba75
Sorry, my own fault this time.
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoin.cpp2
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