Browse Source

Fix the Qt5 build after d95ba75

Sorry, my own fault this time.
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
2882d594fe
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/qt/bitcoin.cpp

2
src/qt/bitcoin.cpp

@ -134,7 +134,7 @@ void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, cons @@ -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

Loading…
Cancel
Save