diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-20 07:30:48 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-20 23:49:46 +0800 |
commit | 7c51d1c1a631a4a8daf26dd44a0aed41eb4726e0 (patch) | |
tree | 6fd638487108721b48023f2832e73961b8399296 /modules/mail/evolution-module-mail.c | |
parent | 84feab41bb9aae3362414ee818139a149a705903 (diff) | |
download | gsoc2013-evolution-7c51d1c1a631a4a8daf26dd44a0aed41eb4726e0.tar.gz gsoc2013-evolution-7c51d1c1a631a4a8daf26dd44a0aed41eb4726e0.tar.zst gsoc2013-evolution-7c51d1c1a631a4a8daf26dd44a0aed41eb4726e0.zip |
Add an extension to configure EMFormatHTML.
Make EMFormatHTML extensible and register an extension to automatically
bind every EMFormatHTML instance to the appropriate EShellSettings.
Diffstat (limited to 'modules/mail/evolution-module-mail.c')
-rw-r--r-- | modules/mail/evolution-module-mail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/mail/evolution-module-mail.c b/modules/mail/evolution-module-mail.c index 1bb58c7742..f6661cda1a 100644 --- a/modules/mail/evolution-module-mail.c +++ b/modules/mail/evolution-module-mail.c @@ -30,6 +30,8 @@ #include "e-mail-shell-sidebar.h" #include "e-mail-shell-view.h" +#include "e-mail-config-format-html.h" + /* Module Entry Points */ void e_module_load (GTypeModule *type_module); void e_module_unload (GTypeModule *type_module); @@ -50,6 +52,8 @@ e_module_load (GTypeModule *type_module) e_mail_shell_content_register_type (type_module); e_mail_shell_sidebar_register_type (type_module); e_mail_shell_view_register_type (type_module); + + e_mail_config_format_html_register_type (type_module); } G_MODULE_EXPORT void |