diff options
author | Milan Crha <mcrha@redhat.com> | 2010-12-06 21:23:20 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-12-06 21:23:20 +0800 |
commit | 22b2d26d048476d4909bfcf348ce6567e0d006a0 (patch) | |
tree | 8902ba49d7ed1ac85a7a619bed720de6ca5cda66 /modules/mail/e-mail-config-format-html.c | |
parent | dad3815a75bef3a119ff65184b4c0fc4c3edffdf (diff) | |
download | gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.gz gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.zst gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.zip |
Free/busy meeting view doesn't work due to non-working extension
Diffstat (limited to 'modules/mail/e-mail-config-format-html.c')
-rw-r--r-- | modules/mail/e-mail-config-format-html.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/mail/e-mail-config-format-html.c b/modules/mail/e-mail-config-format-html.c index 26071c0614..fbf8c6d748 100644 --- a/modules/mail/e-mail-config-format-html.c +++ b/modules/mail/e-mail-config-format-html.c @@ -23,6 +23,8 @@ #include <e-util/e-extension.h> #include <mail/em-format-html.h> +static gpointer parent_class; + static void mail_config_format_html_constructed (GObject *object) { @@ -63,6 +65,9 @@ mail_config_format_html_constructed (GObject *object) shell_settings, "mail-show-real-date", extensible, "show-real-date", G_BINDING_SYNC_CREATE); + + if (G_OBJECT_CLASS (parent_class)->constructed) + G_OBJECT_CLASS (parent_class)->constructed (object); } static void @@ -70,6 +75,8 @@ mail_config_format_html_class_init (EExtensionClass *class) { GObjectClass *object_class; + parent_class = g_type_class_peek_parent (class); + object_class = G_OBJECT_CLASS (class); object_class->constructed = mail_config_format_html_constructed; |