From d756d682d3e80d159c815cf628a5a1b6fd0f31f3 Mon Sep 17 00:00:00 2001 From: APTX Date: Sat, 13 Apr 2013 16:19:43 +0200 Subject: [PATCH] Fix debug line not building with Qt4... --- localmylist/database.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/localmylist/database.cpp b/localmylist/database.cpp index d8f2265..80ca8b8 100644 --- a/localmylist/database.cpp +++ b/localmylist/database.cpp @@ -1841,8 +1841,10 @@ void Database::handleNotification(const QString &name) { #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) Q_UNUSED(source); -#endif qDebug() << "Recieved notification" << name << payload; +#else + qDebug() << "Recieved notification" << name; +#endif if (name == "new_pending_request") { emit newPendingRequest(); -- 2.52.0