aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-config-comp-editor.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-12-06 21:23:20 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:08 +0800
commitca3faa17a9a26479ce39649976264f96cbaf5f4c (patch)
treefc27ef48d586b4976a4c3bbb3f1450a1afc46628 /modules/calendar/e-cal-config-comp-editor.c
parent58807aa5702fa3993de19a2eb1104aaa53cedafb (diff)
downloadgsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar.gz
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar.bz2
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar.lz
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar.xz
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.tar.zst
gsoc2013-evolution-ca3faa17a9a26479ce39649976264f96cbaf5f4c.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.c7
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;