From 9a262c740b0bc0aa6ccc9e96534dafbdf4854108 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 25 Aug 2010 03:49:27 +0000 Subject: [PATCH] Actually, that needs to be the notification daemon. SVN revision: 51630 --- src/modules/illume-indicator/e_mod_main.c | 4 ++-- src/modules/illume-indicator/e_mod_main.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/illume-indicator/e_mod_main.c b/src/modules/illume-indicator/e_mod_main.c index 8b6731df9..54c33925f 100644 --- a/src/modules/illume-indicator/e_mod_main.c +++ b/src/modules/illume-indicator/e_mod_main.c @@ -34,7 +34,7 @@ e_modapi_init(E_Module *m) #ifdef HAVE_ENOTIFY /* init notification subsystem */ - if (!e_notification_init()) + if (!e_notification_daemon_init()) { /* shutdown config */ il_ind_config_shutdown(); @@ -92,7 +92,7 @@ e_modapi_shutdown(E_Module *m __UNUSED__) #ifdef HAVE_ENOTIFY /* shutdown notification subsystem */ - e_notification_shutdown(); + e_notification_daemon_shutdown(); #endif /* shutdown config */ diff --git a/src/modules/illume-indicator/e_mod_main.h b/src/modules/illume-indicator/e_mod_main.h index 72aad6728..596892698 100644 --- a/src/modules/illume-indicator/e_mod_main.h +++ b/src/modules/illume-indicator/e_mod_main.h @@ -2,7 +2,7 @@ # define E_MOD_MAIN_H # ifdef HAVE_ENOTIFY -# include +# include # endif EAPI extern E_Module_Api e_modapi;