From e5e937b2c2f0c4b962a9f8b7856b7d2283d051f3 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 10 Jan 2013 10:03:10 +0000 Subject: [PATCH] add conf_comp to module whitelist, use right name for comp module in other places SVN revision: 82541 --- src/bin/e_module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index 3f8697e18..c9d884f26 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -82,7 +82,7 @@ e_module_all_load(void) EINA_LIST_FOREACH_SAFE(e_config->modules, l, ll, em) { if (!em) continue; - if (!e_util_strcasecmp(em->name, "composite")) + if (!e_util_strcasecmp(em->name, "comp")) { e_config->modules = eina_list_remove_list(e_config->modules, l); eina_stringshare_del(em->name); @@ -141,7 +141,7 @@ e_module_new(const char *name) int in_list = 0; if (!name) return NULL; - if (!e_util_strcasecmp(name, "composite")) + if (!e_util_strcasecmp(name, "comp")) { e_util_dialog_show(_("Module Error"), _("The composite module cannot be loaded;" @@ -662,9 +662,9 @@ _e_module_whitelist_check(void) "battery", "bluez4", "clock", - "comp", "conf", "conf_applications", + "conf_comp", "conf_dialogs", "conf_display", "conf_edgebindings",