diff options
Diffstat (limited to 'src/daemon/NotifyWidget.h')
-rw-r--r-- | src/daemon/NotifyWidget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/daemon/NotifyWidget.h b/src/daemon/NotifyWidget.h index c28bcd5..563f3f2 100644 --- a/src/daemon/NotifyWidget.h +++ b/src/daemon/NotifyWidget.h @@ -25,12 +25,14 @@ #include <tqlabel.h> #include <tqdbusvariant.h> +class NotificationsService; + class NotifyWidget: public TQLabel { TQ_OBJECT public: - NotifyWidget( TQWidget *parent=0, const char *name=0, TQ_INT32 id=0 ); + NotifyWidget(TQWidget *parent=0, const char *name=0, NotificationsService *ns=0, TQ_INT32 id=0 ); virtual ~NotifyWidget(); void setAutoMask(bool b); @@ -47,6 +49,7 @@ private slots: void timeout(); private: + NotificationsService *notificationService; TQString mName; TQ_INT32 mId; TQString mIcon; |