diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-component.c | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5f449977ba..f7a87f5626 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-10-07 Not Zed <NotZed@Ximian.com> + + * mail-component.c (mc_startup): dont init the base plugin system + here anymore, only register the hook types for mail hooks. + 2004-09-28 Not Zed <NotZed@Ximian.com> * em-composer-utils.c (forward_non_attached): put back in the diff --git a/mail/mail-component.c b/mail/mail-component.c index 6bd8c9d123..c0afa0bdd1 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -323,11 +323,6 @@ mc_startup(MailComponent *mc) load_accounts(mc, mail_config_get_accounts()); vfolder_load_storage(); -#ifdef ENABLE_MONO - if (getenv("EVOLUTION_DISABLE_MONO") == NULL) - e_plugin_register_type(e_plugin_mono_get_type()); -#endif - e_plugin_register_type(e_plugin_lib_get_type()); e_plugin_hook_register_type(em_popup_hook_get_type()); e_plugin_hook_register_type(em_menu_hook_get_type()); e_plugin_hook_register_type(em_config_hook_get_type()); @@ -338,8 +333,6 @@ mc_startup(MailComponent *mc) em_format_hook_register_type(em_format_html_display_get_type()); e_plugin_hook_register_type(em_event_hook_get_type()); - - e_plugin_load_plugins(); } static void |