From 01a0ddfc9e39e55bb1fbb7bbb6e96435378734a2 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 9 Jan 2013 14:50:20 +0000 Subject: [PATCH] fix action deletion when unloading conf2 SVN revision: 82463 --- src/modules/conf2/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/conf2/e_mod_main.c b/src/modules/conf2/e_mod_main.c index 50e4f0b2e..332c0a73b 100644 --- a/src/modules/conf2/e_mod_main.c +++ b/src/modules/conf2/e_mod_main.c @@ -365,8 +365,8 @@ e_modapi_shutdown(E_Module *m EINA_UNUSED) /* remove module-supplied action */ if (act) { - e_action_predef_name_del("Launch", "Control Panel"); - e_action_del("conf2"); + e_action_predef_name_del(N_("Launch"), N_("Control Panel")); + e_action_del("configuration"); act = NULL; } conf_module = NULL;