whoops, forgot to add evry options for conf2

SVN revision: 82162
This commit is contained in:
Mike Blumenkrantz 2013-01-04 08:43:27 +00:00
parent 7d09da164f
commit 3f6fa63824
1 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Evry_API *evry = NULL;
Evry_Config *evry_conf = NULL;
int _evry_events[NUM_EVRY_EVENTS];
E_Module *_mod_evry = NULL;
static E_Configure_Option *cfg_opt = NULL;
/* module setup */
EAPI E_Module_Api e_modapi =
@ -63,6 +64,11 @@ e_modapi_init(E_Module *m)
e_configure_registry_item_add
("launcher/run_everything", 40, _("Everything Configuration"),
NULL, module_icon, evry_config_dialog);
E_CONFIGURE_OPTION_ADD(cfg_opt, CUSTOM, collections, evry_conf, "Everything launcher settings", _("exec"), _("everything"));
E_CONFIGURE_OPTION_ICON(cfg_opt, module_icon);
cfg_opt->info = eina_stringshare_add("launcher/run_everything");
e_configure_option_category_tag_add(_("everything"), _("everything"));
e_configure_option_category_icon_set(_("everything"), module_icon);;
evry_init();
_evry_type_init("NONE");
@ -162,6 +168,8 @@ e_modapi_shutdown(E_Module *m __UNUSED__)
em->active = EINA_FALSE;
}
e_configure_option_category_tag_del(_("everything"), _("everything"));
E_FN_DEL(e_configure_option_del, cfg_opt);
evry_plug_apps_shutdown();
evry_plug_files_shutdown();