aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-attachment-icon-view.c3
-rw-r--r--e-util/e-html-editor-paragraph-dialog.c3
-rw-r--r--e-util/e-html-editor-spell-check-dialog.c3
-rw-r--r--e-util/e-html-editor.c4
-rw-r--r--e-util/e-image-chooser-dialog.c3
-rw-r--r--e-util/e-mail-identity-combo-box.c3
-rw-r--r--e-util/e-mail-signature-combo-box.c3
-rw-r--r--e-util/e-mail-signature-editor.c3
-rw-r--r--e-util/e-mail-signature-manager.c3
-rw-r--r--e-util/e-mail-signature-script-dialog.c3
-rw-r--r--e-util/e-mail-signature-tree-view.c3
-rw-r--r--e-util/e-name-selector-entry.c3
-rw-r--r--e-util/e-proxy-link-selector.c3
-rw-r--r--e-util/e-proxy-preferences.c3
-rw-r--r--e-util/e-source-config-dialog.c3
-rw-r--r--e-util/e-source-config.c3
-rw-r--r--e-util/e-source-selector-dialog.c3
-rw-r--r--e-util/e-source-selector.c3
-rw-r--r--e-util/e-table-column-selector.c3
-rw-r--r--e-util/e-tree-table-adapter.c3
20 files changed, 36 insertions, 25 deletions
diff --git a/e-util/e-attachment-icon-view.c b/e-util/e-attachment-icon-view.c
index 0befff00ae..98a7d87dca 100644
--- a/e-util/e-attachment-icon-view.c
+++ b/e-util/e-attachment-icon-view.c
@@ -137,6 +137,9 @@ attachment_icon_view_constructed (GObject *object)
GtkCellLayout *cell_layout;
GtkCellRenderer *renderer;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_attachment_icon_view_parent_class)->constructed (object);
+
cell_layout = GTK_CELL_LAYOUT (object);
/* This needs to happen after constructor properties are set
diff --git a/e-util/e-html-editor-paragraph-dialog.c b/e-util/e-html-editor-paragraph-dialog.c
index 66fbfcc208..6bbf039bdb 100644
--- a/e-util/e-html-editor-paragraph-dialog.c
+++ b/e-util/e-html-editor-paragraph-dialog.c
@@ -53,6 +53,9 @@ html_editor_paragraph_dialog_constructed (GObject *object)
EHTMLEditor *editor;
EHTMLEditorParagraphDialog *dialog;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_html_editor_paragraph_dialog_parent_class)->constructed (object);
+
dialog = E_HTML_EDITOR_PARAGRAPH_DIALOG (object);
editor = e_html_editor_dialog_get_editor (E_HTML_EDITOR_DIALOG (dialog));
diff --git a/e-util/e-html-editor-spell-check-dialog.c b/e-util/e-html-editor-spell-check-dialog.c
index a3b0c693b2..d391860fb0 100644
--- a/e-util/e-html-editor-spell-check-dialog.c
+++ b/e-util/e-html-editor-spell-check-dialog.c
@@ -459,8 +459,7 @@ html_editor_spell_check_dialog_constructed (GObject *object)
EHTMLEditorSpellCheckDialog *dialog;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_html_editor_spell_check_dialog_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_html_editor_spell_check_dialog_parent_class)->constructed (object);
dialog = E_HTML_EDITOR_SPELL_CHECK_DIALOG (object);
e_html_editor_spell_check_dialog_update_dictionaries (dialog);
diff --git a/e-util/e-html-editor.c b/e-util/e-html-editor.c
index aeae5373b0..2106801720 100644
--- a/e-util/e-html-editor.c
+++ b/e-util/e-html-editor.c
@@ -598,11 +598,13 @@ html_editor_constructed (GObject *object)
EHTMLEditor *editor = E_HTML_EDITOR (object);
EHTMLEditorPrivate *priv = editor->priv;
GtkIMMulticontext *im_context;
-
GtkWidget *widget;
GtkToolbar *toolbar;
GtkToolItem *tool_item;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_html_editor_parent_class)->constructed (object);
+
/* Construct the editing toolbars. */
widget = e_html_editor_get_managed_widget (editor, "/edit-toolbar");
diff --git a/e-util/e-image-chooser-dialog.c b/e-util/e-image-chooser-dialog.c
index 936d39793e..da788f5a87 100644
--- a/e-util/e-image-chooser-dialog.c
+++ b/e-util/e-image-chooser-dialog.c
@@ -160,6 +160,9 @@ image_chooser_dialog_constructed (GObject *object)
GtkFileChooser *file_chooser;
GtkFileFilter *file_filter;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_image_chooser_dialog_parent_class)->constructed (object);
+
file_chooser = GTK_FILE_CHOOSER (object);
gtk_file_chooser_set_local_only (file_chooser, FALSE);
diff --git a/e-util/e-mail-identity-combo-box.c b/e-util/e-mail-identity-combo-box.c
index bc37754693..2bb17e1109 100644
--- a/e-util/e-mail-identity-combo-box.c
+++ b/e-util/e-mail-identity-combo-box.c
@@ -259,8 +259,7 @@ mail_identity_combo_box_constructed (GObject *object)
GtkCellRenderer *cell_renderer;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_identity_combo_box_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_identity_combo_box_parent_class)->constructed (object);
combo_box = GTK_COMBO_BOX (object);
cell_layout = GTK_CELL_LAYOUT (object);
diff --git a/e-util/e-mail-signature-combo-box.c b/e-util/e-mail-signature-combo-box.c
index 835fe80839..fcd3dd0788 100644
--- a/e-util/e-mail-signature-combo-box.c
+++ b/e-util/e-mail-signature-combo-box.c
@@ -244,8 +244,7 @@ mail_signature_combo_box_constructed (GObject *object)
GtkCellRenderer *cell_renderer;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_signature_combo_box_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_signature_combo_box_parent_class)->constructed (object);
combo_box = GTK_COMBO_BOX (object);
cell_layout = GTK_CELL_LAYOUT (object);
diff --git a/e-util/e-mail-signature-editor.c b/e-util/e-mail-signature-editor.c
index b5c87635f1..286efbd727 100644
--- a/e-util/e-mail-signature-editor.c
+++ b/e-util/e-mail-signature-editor.c
@@ -493,8 +493,7 @@ mail_signature_editor_constructed (GObject *object)
GError *error = NULL;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_signature_editor_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_signature_editor_parent_class)->constructed (object);
window = E_MAIL_SIGNATURE_EDITOR (object);
editor = e_mail_signature_editor_get_editor (window);
diff --git a/e-util/e-mail-signature-manager.c b/e-util/e-mail-signature-manager.c
index fb34c7eb4c..7d1efdb43e 100644
--- a/e-util/e-mail-signature-manager.c
+++ b/e-util/e-mail-signature-manager.c
@@ -256,8 +256,7 @@ mail_signature_manager_constructed (GObject *object)
GtkWidget *hbox;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_signature_manager_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_signature_manager_parent_class)->constructed (object);
manager = E_MAIL_SIGNATURE_MANAGER (object);
registry = e_mail_signature_manager_get_registry (manager);
diff --git a/e-util/e-mail-signature-script-dialog.c b/e-util/e-mail-signature-script-dialog.c
index 0d239e0dca..fe915798b6 100644
--- a/e-util/e-mail-signature-script-dialog.c
+++ b/e-util/e-mail-signature-script-dialog.c
@@ -351,8 +351,7 @@ mail_signature_script_dialog_constructed (GObject *object)
gchar *markup;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_signature_script_dialog_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_signature_script_dialog_parent_class)->constructed (object);
dialog = E_MAIL_SIGNATURE_SCRIPT_DIALOG (object);
diff --git a/e-util/e-mail-signature-tree-view.c b/e-util/e-mail-signature-tree-view.c
index 68e078b5bc..08d14fd480 100644
--- a/e-util/e-mail-signature-tree-view.c
+++ b/e-util/e-mail-signature-tree-view.c
@@ -170,8 +170,7 @@ mail_signature_tree_view_constructed (GObject *object)
GtkListStore *list_store;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_mail_signature_tree_view_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_mail_signature_tree_view_parent_class)->constructed (object);
list_store = gtk_list_store_new (
NUM_COLUMNS,
diff --git a/e-util/e-name-selector-entry.c b/e-util/e-name-selector-entry.c
index 5a6519c39b..3ded557a66 100644
--- a/e-util/e-name-selector-entry.c
+++ b/e-util/e-name-selector-entry.c
@@ -228,8 +228,7 @@ static void
name_selector_entry_constructed (GObject *object)
{
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_name_selector_entry_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_name_selector_entry_parent_class)->constructed (object);
e_extensible_load_extensions (E_EXTENSIBLE (object));
}
diff --git a/e-util/e-proxy-link-selector.c b/e-util/e-proxy-link-selector.c
index 360604b141..4e1a62d982 100644
--- a/e-util/e-proxy-link-selector.c
+++ b/e-util/e-proxy-link-selector.c
@@ -149,8 +149,7 @@ proxy_link_selector_constructed (GObject *object)
(GDestroyNotify) g_object_unref);
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_proxy_link_selector_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_proxy_link_selector_parent_class)->constructed (object);
/* This triggers a model rebuild, so chain up first. */
e_source_selector_set_show_icons (selector, TRUE);
diff --git a/e-util/e-proxy-preferences.c b/e-util/e-proxy-preferences.c
index 774735b1f1..2af662359f 100644
--- a/e-util/e-proxy-preferences.c
+++ b/e-util/e-proxy-preferences.c
@@ -371,8 +371,7 @@ proxy_preferences_constructed (GObject *object)
gboolean show_advanced;
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_proxy_preferences_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_proxy_preferences_parent_class)->constructed (object);
preferences = E_PROXY_PREFERENCES (object);
registry = e_proxy_preferences_get_registry (preferences);
diff --git a/e-util/e-source-config-dialog.c b/e-util/e-source-config-dialog.c
index f5d1b72b16..98aea98beb 100644
--- a/e-util/e-source-config-dialog.c
+++ b/e-util/e-source-config-dialog.c
@@ -250,6 +250,9 @@ source_config_dialog_constructed (GObject *object)
GtkWidget *widget;
gulong handler_id;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_source_config_dialog_parent_class)->constructed (object);
+
priv = E_SOURCE_CONFIG_DIALOG_GET_PRIVATE (object);
config = GTK_WIDGET (priv->config);
diff --git a/e-util/e-source-config.c b/e-util/e-source-config.c
index 57baf44ce8..9d51718811 100644
--- a/e-util/e-source-config.c
+++ b/e-util/e-source-config.c
@@ -661,6 +661,9 @@ source_config_constructed (GObject *object)
ESource *original_source;
ESource *collection_source = NULL;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_source_config_parent_class)->constructed (object);
+
config = E_SOURCE_CONFIG (object);
registry = e_source_config_get_registry (config);
original_source = e_source_config_get_original_source (config);
diff --git a/e-util/e-source-selector-dialog.c b/e-util/e-source-selector-dialog.c
index f08c319a77..908370bcf2 100644
--- a/e-util/e-source-selector-dialog.c
+++ b/e-util/e-source-selector-dialog.c
@@ -207,6 +207,9 @@ source_selector_dialog_constructed (GObject *object)
GtkWidget *widget;
gchar *label_text;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_source_selector_dialog_parent_class)->constructed (object);
+
dialog = E_SOURCE_SELECTOR_DIALOG (object);
container = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
diff --git a/e-util/e-source-selector.c b/e-util/e-source-selector.c
index e540248047..2952e4b1f5 100644
--- a/e-util/e-source-selector.c
+++ b/e-util/e-source-selector.c
@@ -885,6 +885,9 @@ source_selector_constructed (GObject *object)
ESourceSelector *selector;
gulong handler_id;
+ /* Chain up to parent's method. */
+ G_OBJECT_CLASS (e_source_selector_parent_class)->constructed (object);
+
selector = E_SOURCE_SELECTOR (object);
registry = e_source_selector_get_registry (selector);
diff --git a/e-util/e-table-column-selector.c b/e-util/e-table-column-selector.c
index 4eba0763be..beab1570d2 100644
--- a/e-util/e-table-column-selector.c
+++ b/e-util/e-table-column-selector.c
@@ -238,8 +238,7 @@ table_column_selector_constructed (GObject *object)
selector = E_TABLE_COLUMN_SELECTOR (object);
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_table_column_selector_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_table_column_selector_parent_class)->constructed (object);
tree_view_frame = E_TREE_VIEW_FRAME (object);
tree_view = e_tree_view_frame_get_tree_view (tree_view_frame);
diff --git a/e-util/e-tree-table-adapter.c b/e-util/e-tree-table-adapter.c
index b7efb05996..a62e4f38f4 100644
--- a/e-util/e-tree-table-adapter.c
+++ b/e-util/e-tree-table-adapter.c
@@ -815,8 +815,7 @@ tree_table_adapter_constructed (GObject *object)
etta = E_TREE_TABLE_ADAPTER (object);
/* Chain up to parent's constructed() method. */
- G_OBJECT_CLASS (e_tree_table_adapter_parent_class)->
- constructed (object);
+ G_OBJECT_CLASS (e_tree_table_adapter_parent_class)->constructed (object);
source_model = e_tree_table_adapter_get_source_model (etta);