diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-07-14 17:13:34 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-07-14 17:13:34 +0200 |
| commit | 9bbba72939248388dfc832a5bf20cb9539ab0675 (patch) | |
| tree | c9c919a74aeff32335175df457c3e9e098306e5f /daemon/notificationmanager.cpp | |
| parent | 648e0cc8e5ebac749554dd4b037a0d200f577c5f (diff) | |
Supress unused parameter warnings
Diffstat (limited to 'daemon/notificationmanager.cpp')
| -rw-r--r-- | daemon/notificationmanager.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/daemon/notificationmanager.cpp b/daemon/notificationmanager.cpp index 917a245..17e98bc 100644 --- a/daemon/notificationmanager.cpp +++ b/daemon/notificationmanager.cpp @@ -104,7 +104,13 @@ QStringHash NotificationManager::getCategoryParams(QString category) return QStringHash(); } -void NotificationManager::Notify(const QString &app_name, uint replaces_id, const QString &app_icon, const QString &summary, const QString &body, const QStringList &actions, const QVariantHash &hints, int expire_timeout) { +void NotificationManager::Notify(const QString &app_name, uint replaces_id, const QString &app_icon, + const QString &summary, const QString &body, const QStringList &actions, const QVariantHash &hints, int expire_timeout) +{ + Q_UNUSED(replaces_id); + Q_UNUSED(app_icon); + Q_UNUSED(actions); + Q_UNUSED(expire_timeout); //Ignore notifcations from myself if (app_name == "pebbled") { |
