Make sender column clickable
[quassel.git] / src / qtui / systraynotificationbackend.h
index 0895cbe..7fdf4e8 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef SYSTRAYNOTIFICATIONBACKEND_H_
 #define SYSTRAYNOTIFICATIONBACKEND_H_
 
+#ifndef QT_NO_SYSTEMTRAYICON
+
 #include <QSystemTrayIcon>
 
 #include "abstractnotificationbackend.h"
@@ -54,7 +56,6 @@ private:
   bool _showBubble;
   bool _animate;
   QList<Notification> _notifications;
-  uint _activeId;
 };
 
 class SystrayNotificationBackend::ConfigWidget : public SettingsPage {
@@ -75,4 +76,6 @@ private:
   bool _showBubble, _animate;
 };
 
+#endif /* QT_NO_SYSTEMTRAYICON */
+
 #endif