diff options
Diffstat (limited to 'src/dhcpcd-qt/dhcpcd-qt.cpp')
| -rw-r--r-- | src/dhcpcd-qt/dhcpcd-qt.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/dhcpcd-qt/dhcpcd-qt.cpp b/src/dhcpcd-qt/dhcpcd-qt.cpp index b9cf703..ab1bfc4 100644 --- a/src/dhcpcd-qt/dhcpcd-qt.cpp +++ b/src/dhcpcd-qt/dhcpcd-qt.cpp @@ -40,12 +40,6 @@ #include "dhcpcd-ifmenu.h" #include "dhcpcd-ssidmenu.h" -#if defined(KNOTIFY5) -#include <KNotification> -#elif defined(KNOTIFY4) -#include <knotification.h> -#endif - DhcpcdQt::DhcpcdQt() { @@ -539,14 +533,6 @@ void DhcpcdQt::dispatch() void DhcpcdQt::notify(const QString &title, const QString &msg, const QString &icon) { - -#if defined(KNOTIFY4) || defined(KNOTIFY5) - KNotification *n = new KNotification("event", this); - n->setIconName(icon); - n->setTitle(title); - n->setText(msg); - n->sendEvent(); -#else #if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0) const QIcon i = getIcon("status", icon); #else @@ -556,7 +542,6 @@ void DhcpcdQt::notify(const QString &title, const QString &msg, i = QSystemTrayIcon::Warning; #endif trayIcon->showMessage(title, msg, i); -#endif } void DhcpcdQt::closeEvent(QCloseEvent *event) |
