diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-21 11:36:34 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-21 11:36:34 +0800 |
commit | ed77e8e15bbbb886cf92dfb0fb1700a1c1d92548 (patch) | |
tree | 4fe3562533ac4b58715786682f5758e1e25e0954 /mail/e-mail-shell-module.c | |
parent | 567453082a1ee766d207847ccea0e9ff948133d7 (diff) | |
download | gsoc2013-evolution-ed77e8e15bbbb886cf92dfb0fb1700a1c1d92548.tar.gz gsoc2013-evolution-ed77e8e15bbbb886cf92dfb0fb1700a1c1d92548.tar.zst gsoc2013-evolution-ed77e8e15bbbb886cf92dfb0fb1700a1c1d92548.zip |
Convert eab-vcard-control.c to a new "vcard-inline" plugin, similar to the
"audio-inline" plugin.
svn path=/branches/kill-bonobo/; revision=37301
Diffstat (limited to 'mail/e-mail-shell-module.c')
-rw-r--r-- | mail/e-mail-shell-module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/e-mail-shell-module.c b/mail/e-mail-shell-module.c index cdbfeac0f0..f699edf7c3 100644 --- a/mail/e-mail-shell-module.c +++ b/mail/e-mail-shell-module.c @@ -264,12 +264,13 @@ mail_shell_module_init_hooks (void) { e_plugin_hook_register_type (em_config_hook_get_type ()); e_plugin_hook_register_type (em_event_hook_get_type ()); - e_plugin_hook_register_type (em_format_hook_get_type ()); e_plugin_hook_register_type (em_junk_hook_get_type ()); + /* EMFormat classes must be registered before EMFormatHook. */ em_format_hook_register_type (em_format_get_type ()); em_format_hook_register_type (em_format_html_get_type ()); em_format_hook_register_type (em_format_html_display_get_type ()); + e_plugin_hook_register_type (em_format_hook_get_type ()); em_junk_hook_register_type (emj_get_type ()); } |