discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=bafa13091e4b504b3ad1224dde91e763eef1540a
commit bafa13091e4b504b3ad1224dde91e763eef1540a Author: Chris Michael <[email protected]> Date: Thu Sep 18 14:17:50 2014 -0400 bugfix: Cleanup systray module having missing initializers for Eldbus Message & Signals Signed-off-by: Chris Michael <[email protected]> --- src/modules/systray/e_mod_notifier_watcher.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/modules/systray/e_mod_notifier_watcher.c b/src/modules/systray/e_mod_notifier_watcher.c index f1b9cd1..e31ab45 100644 --- a/src/modules/systray/e_mod_notifier_watcher.c +++ b/src/modules/systray/e_mod_notifier_watcher.c @@ -118,27 +118,27 @@ properties_get(const Eldbus_Service_Interface *s_iface EINA_UNUSED, const char * static const Eldbus_Property properties[] = { - { "RegisteredStatusNotifierItems", "as" }, - { "IsStatusNotifierHostRegistered", "b" }, - { "ProtocolVersion", "i" }, - { } + { "RegisteredStatusNotifierItems", "as", NULL, NULL, 0 }, + { "IsStatusNotifierHostRegistered", "b", NULL, NULL, 0 }, + { "ProtocolVersion", "i", NULL, NULL, 0 }, + { NULL, NULL, NULL, NULL, 0 } }; static const Eldbus_Signal signals[] = { - { "StatusNotifierItemRegistered", ELDBUS_ARGS({"s", "service"}) }, - { "StatusNotifierItemUnregistered", ELDBUS_ARGS({"s", "service"}) }, - { "StatusNotifierHostRegistered", NULL }, - { "StatusNotifierHostUnregistered", NULL }, - { } + { "StatusNotifierItemRegistered", ELDBUS_ARGS({"s", "service"}), 0 }, + { "StatusNotifierItemUnregistered", ELDBUS_ARGS({"s", "service"}), 0 }, + { "StatusNotifierHostRegistered", NULL, 0 }, + { "StatusNotifierHostUnregistered", NULL, 0 }, + { NULL, NULL, 0 } }; static const Eldbus_Method methods[] = { { "RegisterStatusNotifierItem", ELDBUS_ARGS({"s", "service"}), NULL, - register_item_cb }, + register_item_cb, 0 }, { "RegisterStatusNotifierHost", ELDBUS_ARGS({"s", "service"}), NULL, - register_host_cb }, - { } + register_host_cb, 0 }, + { NULL, NULL, NULL, NULL, 0 } }; static const Eldbus_Service_Interface_Desc iface_desc = { --
