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 /e-util | |
parent | dad3815a75bef3a119ff65184b4c0fc4c3edffdf (diff) | |
download | gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.gz gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.bz2 gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.lz gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.xz gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.zst gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.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 |