From a35a47a558e29a61430db636acab142395189c18 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Mon, 12 Mar 2012 08:58:23 +0000 Subject: [PATCH] e: fix notification module id. Patch by P Purkayastha . SVN revision: 69234 --- src/modules/notification/e_mod_box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/notification/e_mod_box.c b/src/modules/notification/e_mod_box.c index 1417a6a27..48b6bc1bd 100644 --- a/src/modules/notification/e_mod_box.c +++ b/src/modules/notification/e_mod_box.c @@ -153,7 +153,7 @@ notification_box_config_item_get(const char *id) GADCON_CLIENT_CONFIG_GET(Config_Item, notification_cfg->items, _gc_class, id); ci = E_NEW(Config_Item, 1); - ci->id = eina_stringshare_ref(id); + ci->id = eina_stringshare_add(id); ci->show_label = 1; ci->show_popup = 1; ci->focus_window = 1;