src: Yearly copyright bump
[quassel.git] / src / qtui / legacysystemtray.h
index e2bc338..7f1b66c 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2018 by the Quassel Project                        *
+ *   Copyright (C) 2005-2019 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This file is free software; you can redistribute it and/or modify     *
 
 #ifndef QT_NO_SYSTEMTRAYICON
 
-#include <QString>
+#    include <QString>
+#    include <QSystemTrayIcon>
 
-#ifdef HAVE_KDE4
-#  include <KSystemTrayIcon>
-#else
-#  include <QSystemTrayIcon>
-#endif
-
-#include "systemtray.h"
+#    include "systemtray.h"
 
 class LegacySystemTray : public SystemTray
 {
     Q_OBJECT
 
 public:
-    explicit LegacySystemTray(QWidget *parent);
+    explicit LegacySystemTray(QWidgetparent);
 
     bool isSystemTrayAvailable() const override;
 
 public slots:
-    void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0) override;
+    void showMessage(const QString& title,
+                     const QString& message,
+                     MessageIcon icon = Information,
+                     int msTimeout = 10000,
+                     uint notificationId = 0) override;
     void closeMessage(uint notificationId) override;
 
 private slots:
@@ -56,13 +55,9 @@ private slots:
     void updateToolTip();
 
 private:
-    uint _lastMessageId {0};
+    uint _lastMessageId{0};
 
-#ifdef HAVE_KDE4
-    KSystemTrayIcon *_trayIcon;
-#else
-    QSystemTrayIcon *_trayIcon;
-#endif
+    QSystemTrayIcon* _trayIcon;
 };
 
 #endif /* QT_NO_SYSTEMTRAYICON */