From 9d97249ef6d64857b853d2a2c4a26ce154af2616 Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Tue, 19 Jul 2011 00:41:27 +0200 Subject: [PATCH] use priority in notification interface --- src/core/snorenotificationinstance.cpp | 4 ++-- src/core/snorenotificationinstance.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/snorenotificationinstance.cpp b/src/core/snorenotificationinstance.cpp index f474330..8fea18d 100644 --- a/src/core/snorenotificationinstance.cpp +++ b/src/core/snorenotificationinstance.cpp @@ -50,9 +50,9 @@ void SnoreNotificationInstance::unregisterWithBackends() _snore->removeApplication ( _app->name() ); } -int SnoreNotificationInstance::notify ( const QString &alert, const QString &title, const QString &text, const QString &icon, int timeout ) +int SnoreNotificationInstance::notify ( const QString &alert, const QString &title, const QString &text, const QString &icon, int timeout,Notification::prioritys priority ) { - return _snore->broadcastNotification ( Notification( this,_app->name(),alert,title,text,icon,timeout ) ); + return _snore->broadcastNotification ( Notification( this,_app->name(),alert,title,text,icon,timeout,0,priority ) ); } void SnoreNotificationInstance::actionInvoked ( Notification notification ){ diff --git a/src/core/snorenotificationinstance.h b/src/core/snorenotificationinstance.h index c1723d1..23e39b2 100644 --- a/src/core/snorenotificationinstance.h +++ b/src/core/snorenotificationinstance.h @@ -31,7 +31,7 @@ public: void addAlert ( const QString &name,const QString &title = 0, const QString &icon="" ); void registerWithBackends(); void unregisterWithBackends(); - int notify ( const QString &alert,const QString &title,const QString &text,const QString &icon = 0,int timeout = 10 ); + int notify ( const QString &alert,const QString &title,const QString &text,const QString &icon = 0,int timeout = 10, Notification::prioritys priority = Notification::NORMAL); void actionInvoked ( Notification notification ); void notificationClosed ( Notification notification );