diff options
author | Emanoil Kotsev <deloptes@gmail.com> | 2021-11-12 21:07:06 +0100 |
---|---|---|
committer | Emanoil Kotsev <deloptes@gmail.com> | 2024-11-09 18:49:26 +0000 |
commit | 1eeb7a3c737487ba0b087520353b51f23063e953 (patch) | |
tree | 2979b7d47c3bc23f474d914bb3a7c87db0bde8da /src/daemon | |
parent | 0d015243b3305fbd8f2453c917f4b38b007dddbd (diff) | |
download | kdbusnotification-1eeb7a3c737487ba0b087520353b51f23063e953.tar.gz kdbusnotification-1eeb7a3c737487ba0b087520353b51f23063e953.zip |
Rename notificationService to notificationNodeService to prevent mixing up with NotificationsService
Diffstat (limited to 'src/daemon')
-rw-r--r-- | src/daemon/NotificationDaemon.cpp | 4 | ||||
-rw-r--r-- | src/daemon/NotificationDaemon.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/NotificationDaemon.cpp b/src/daemon/NotificationDaemon.cpp index 1b85654..cb3c4fa 100644 --- a/src/daemon/NotificationDaemon.cpp +++ b/src/daemon/NotificationDaemon.cpp @@ -49,7 +49,7 @@ NotificationDaemon::~NotificationDaemon() // close D-Bus connection close(); - delete notificationService; + delete notificationNodeService; delete freedesktopService; delete orgService; delete rootService; @@ -118,7 +118,7 @@ void NotificationDaemon::slotConnectionCheck() { rootService = new RootNodeService(mConnection); orgService = new OrgNodeService(mConnection); freedesktopService = new FreeDesktopNodeService(mConnection); - notificationService = new NotificationsNodeService(mConnection); + notificationNodeService = new NotificationsNodeService(mConnection); tqDebug("TDE Notification service setup done."); } diff --git a/src/daemon/NotificationDaemon.h b/src/daemon/NotificationDaemon.h index 8f73ba1..25adf7f 100644 --- a/src/daemon/NotificationDaemon.h +++ b/src/daemon/NotificationDaemon.h @@ -78,7 +78,7 @@ private: RootNodeService *rootService; OrgNodeService *orgService; FreeDesktopNodeService *freedesktopService; - NotificationsNodeService *notificationService; + NotificationsNodeService *notificationNodeService; TQT_DBusConnection mConnection; int retryCount; |