aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoin.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-07-02 08:14:50 +0200
committerWladimir J. van der Laan <[email protected]>2014-07-02 08:15:09 +0200
commit2882d594fed93dc5bde67ffa33624ab29f90ac8b (patch)
treef429618850c32cc646918fe78019faefba8f6f4b /src/qt/bitcoin.cpp
parentMerge pull request #4448 from laanwj/2014_07_qt_payment_rq_logging (diff)
downloaddiscoin-2882d594fed93dc5bde67ffa33624ab29f90ac8b.tar.xz
discoin-2882d594fed93dc5bde67ffa33624ab29f90ac8b.zip
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 569facb49..7c4af25ed 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