Actually, that needs to be the notification daemon.

SVN revision: 51630
This commit is contained in:
Christopher Michael 2010-08-25 03:49:27 +00:00
parent 4185513963
commit 9a262c740b
2 changed files with 3 additions and 3 deletions

View File

@ -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 */

View File

@ -2,7 +2,7 @@
# define E_MOD_MAIN_H
# ifdef HAVE_ENOTIFY
# include <E_Notify.h>
# include <E_Notification_Daemon.h>
# endif
EAPI extern E_Module_Api e_modapi;