diff options
author | Milan Crha <mcrha@redhat.com> | 2010-12-06 21:23:20 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:08 +0800 |
commit | ca3faa17a9a26479ce39649976264f96cbaf5f4c (patch) | |
tree | fc27ef48d586b4976a4c3bbb3f1450a1afc46628 /e-util | |
parent | 58807aa5702fa3993de19a2eb1104aaa53cedafb (diff) | |
download | gsoc2013-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 'e-util')
-rw-r--r-- | e-util/e-alert-dialog.c | 3 | ||||
-rw-r--r-- | e-util/e-alert.c | 3 | ||||
-rw-r--r-- | e-util/e-extension.c | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/e-util/e-alert-dialog.c b/e-util/e-alert-dialog.c index 2639196ca7..81a84746f6 100644 --- a/e-util/e-alert-dialog.c +++ b/e-util/e-alert-dialog.c @@ -218,6 +218,9 @@ alert_dialog_constructed (GObject *object) gtk_widget_show (widget); pango_attr_list_unref (list); + + if (G_OBJECT_CLASS (e_alert_dialog_parent_class)->constructed) + G_OBJECT_CLASS (e_alert_dialog_parent_class)->constructed (object); } static void diff --git a/e-util/e-alert.c b/e-util/e-alert.c index 9f7a80162a..9d55c40ddf 100644 --- a/e-util/e-alert.c +++ b/e-util/e-alert.c @@ -558,6 +558,9 @@ alert_constructed (GObject *object) button = button->next; } + + if (G_OBJECT_CLASS (e_alert_parent_class)->constructed) + G_OBJECT_CLASS (e_alert_parent_class)->constructed (object); } static void diff --git a/e-util/e-extension.c b/e-util/e-extension.c index 75caf5adf4..1bcef90d76 100644 --- a/e-util/e-extension.c +++ b/e-util/e-extension.c @@ -127,6 +127,9 @@ extension_constructed (GObject *object) /* This allows subclasses to chain up safely since GObject * does not implement this method, and we might want to do * something here in the future. */ + + if (G_OBJECT_CLASS (e_extension_parent_class)->constructed) + G_OBJECT_CLASS (e_extension_parent_class)->constructed (object); } static void |