From: APTX Date: Sat, 13 Apr 2013 14:19:43 +0000 (+0200) Subject: Fix debug line not building with Qt4... X-Git-Url: https://gitweb.tyo.aptx.org/?a=commitdiff_plain;h=d756d682d3e80d159c815cf628a5a1b6fd0f31f3;p=localmylist.git Fix debug line not building with Qt4... --- 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();