Fix the Qt5 build after d95ba75

Sorry, my own fault this time.
This commit is contained in:
Wladimir J. van der Laan 2014-07-02 08:14:50 +02:00
parent f04f123407
commit 2882d594fe
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -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