From 22b2d26d048476d4909bfcf348ce6567e0d006a0 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 6 Dec 2010 14:23:20 +0100 Subject: Free/busy meeting view doesn't work due to non-working extension --- widgets/misc/e-attachment-handler-image.c | 4 ++-- widgets/misc/e-attachment-handler-sendto.c | 4 ++-- widgets/misc/e-attachment-handler.c | 4 ++-- widgets/misc/e-attachment-paned.c | 3 +++ widgets/misc/e-attachment-store.c | 3 +++ widgets/misc/e-focus-tracker.c | 3 +++ widgets/misc/e-preview-pane.c | 3 +++ widgets/misc/e-search-bar.c | 3 +++ 8 files changed, 21 insertions(+), 6 deletions(-) (limited to 'widgets/misc') diff --git a/widgets/misc/e-attachment-handler-image.c b/widgets/misc/e-attachment-handler-image.c index 2aedaa6023..2eb646c3f1 100644 --- a/widgets/misc/e-attachment-handler-image.c +++ b/widgets/misc/e-attachment-handler-image.c @@ -210,8 +210,8 @@ attachment_handler_image_constructed (GObject *object) handler = E_ATTACHMENT_HANDLER (object); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_attachment_handler_image_parent_class)-> - constructed (object); + if (G_OBJECT_CLASS (e_attachment_handler_image_parent_class)->constructed) + G_OBJECT_CLASS (e_attachment_handler_image_parent_class)->constructed (object); view = e_attachment_handler_get_view (handler); diff --git a/widgets/misc/e-attachment-handler-sendto.c b/widgets/misc/e-attachment-handler-sendto.c index a508314705..bea3e2327f 100644 --- a/widgets/misc/e-attachment-handler-sendto.c +++ b/widgets/misc/e-attachment-handler-sendto.c @@ -185,8 +185,8 @@ attachment_handler_sendto_constructed (GObject *object) handler = E_ATTACHMENT_HANDLER (object); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_attachment_handler_sendto_parent_class)-> - constructed (object); + if (G_OBJECT_CLASS (e_attachment_handler_sendto_parent_class)->constructed) + G_OBJECT_CLASS (e_attachment_handler_sendto_parent_class)->constructed (object); view = e_attachment_handler_get_view (handler); ui_manager = e_attachment_view_get_ui_manager (view); diff --git a/widgets/misc/e-attachment-handler.c b/widgets/misc/e-attachment-handler.c index 0b9c057b65..3f77136152 100644 --- a/widgets/misc/e-attachment-handler.c +++ b/widgets/misc/e-attachment-handler.c @@ -56,8 +56,8 @@ attachment_handler_constructed (GObject *object) e_attachment_view_add_drag_actions (view, drag_actions); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_attachment_handler_parent_class)-> - constructed (object); + if (G_OBJECT_CLASS (e_attachment_handler_parent_class)) + G_OBJECT_CLASS (e_attachment_handler_parent_class)->constructed (object); } static void diff --git a/widgets/misc/e-attachment-paned.c b/widgets/misc/e-attachment-paned.c index d632795f66..f15b871b1c 100644 --- a/widgets/misc/e-attachment-paned.c +++ b/widgets/misc/e-attachment-paned.c @@ -352,6 +352,9 @@ attachment_paned_constructed (GObject *object) key = "/apps/evolution/shell/attachment_view"; gconf_bridge_bind_property (bridge, key, object, "active-view"); + + if (G_OBJECT_CLASS (e_attachment_paned_parent_class)->constructed) + G_OBJECT_CLASS (e_attachment_paned_parent_class)->constructed (object); } static EAttachmentViewPrivate * diff --git a/widgets/misc/e-attachment-store.c b/widgets/misc/e-attachment-store.c index 8e2ad2ec23..d647a575dc 100644 --- a/widgets/misc/e-attachment-store.c +++ b/widgets/misc/e-attachment-store.c @@ -147,6 +147,9 @@ attachment_store_constructed (GObject *object) key = "/apps/evolution/shell/file_chooser_folder"; gconf_bridge_bind_property (bridge, key, object, "current-folder-uri"); + + if (G_OBJECT_CLASS (e_attachment_store_parent_class)->constructed) + G_OBJECT_CLASS (e_attachment_store_parent_class)->constructed (object); } static void diff --git a/widgets/misc/e-focus-tracker.c b/widgets/misc/e-focus-tracker.c index 4abffac395..429a62af45 100644 --- a/widgets/misc/e-focus-tracker.c +++ b/widgets/misc/e-focus-tracker.c @@ -444,6 +444,9 @@ focus_tracker_constructed (GObject *object) g_signal_connect_swapped ( clipboard, "owner-change", G_CALLBACK (e_focus_tracker_update_actions), object); + + if (G_OBJECT_CLASS (e_focus_tracker_parent_class)->constructed) + G_OBJECT_CLASS (e_focus_tracker_parent_class)->constructed (object); } static void diff --git a/widgets/misc/e-preview-pane.c b/widgets/misc/e-preview-pane.c index bbbb94f81b..f6617ad29a 100644 --- a/widgets/misc/e-preview-pane.c +++ b/widgets/misc/e-preview-pane.c @@ -146,6 +146,9 @@ preview_pane_constructed (GObject *object) gtk_box_pack_start (GTK_BOX (object), widget, FALSE, FALSE, 0); priv->search_bar = g_object_ref (widget); gtk_widget_hide (widget); + + if (G_OBJECT_CLASS (e_preview_pane_parent_class)->constructed) + G_OBJECT_CLASS (e_preview_pane_parent_class)->constructed (object); } static void diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index ede2e2fb37..695eb112e7 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -383,6 +383,9 @@ search_bar_constructed (GObject *object) priv->case_sensitive_button, "active", G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE); + + if (G_OBJECT_CLASS (e_search_bar_parent_class)->constructed) + G_OBJECT_CLASS (e_search_bar_parent_class)->constructed (object); } static void -- cgit v1.2.3