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/calendar/e-cal-config-comp-editor.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/calendar/e-cal-config-comp-editor.c')
-rw-r--r-- | modules/calendar/e-cal-config-comp-editor.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/calendar/e-cal-config-comp-editor.c b/modules/calendar/e-cal-config-comp-editor.c index 327bcd4518..ae8753de74 100644 --- a/modules/calendar/e-cal-config-comp-editor.c +++ b/modules/calendar/e-cal-config-comp-editor.c @@ -22,6 +22,8 @@ #include <e-util/e-extension.h> #include <calendar/gui/dialogs/comp-editor.h> +static gpointer parent_class; + static void cal_config_comp_editor_constructed (GObject *object) { @@ -65,6 +67,9 @@ cal_config_comp_editor_constructed (GObject *object) shell_settings, "cal-work-day-start-minute", extensible, "work-day-start-minute", G_BINDING_SYNC_CREATE); + + if (G_OBJECT_CLASS (parent_class)->constructed) + G_OBJECT_CLASS (parent_class)->constructed (object); } static void @@ -72,6 +77,8 @@ cal_config_comp_editor_class_init (EExtensionClass *class) { GObjectClass *object_class; + parent_class = g_type_class_peek_parent (class); + object_class = G_OBJECT_CLASS (class); object_class->constructed = cal_config_comp_editor_constructed; |