diff options
author | Milan Crha <mcrha@redhat.com> | 2014-07-17 18:46:38 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-07-17 18:46:38 +0800 |
commit | bcc3a1c7e641830622690116907c02b7f89183d7 (patch) | |
tree | 108cc4feb3c005de920a4b0c86cf414ec7d89e99 /modules/startup-wizard | |
parent | 968a7477c72124fc0f7af837b4894db6ee4553d2 (diff) | |
download | gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.gz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.bz2 gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.lz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.xz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.zst gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.zip |
Add missing chain-up-s to parent's constructed() method
Plus a little code cleanup for easier grepping.
Diffstat (limited to 'modules/startup-wizard')
-rw-r--r-- | modules/startup-wizard/e-mail-config-import-page.c | 3 | ||||
-rw-r--r-- | modules/startup-wizard/e-mail-config-import-progress-page.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/modules/startup-wizard/e-mail-config-import-page.c b/modules/startup-wizard/e-mail-config-import-page.c index 61e5bb0c94..e45963608a 100644 --- a/modules/startup-wizard/e-mail-config-import-page.c +++ b/modules/startup-wizard/e-mail-config-import-page.c @@ -190,8 +190,7 @@ mail_config_import_page_constructed (GObject *object) page = E_MAIL_CONFIG_IMPORT_PAGE (object); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_mail_config_import_page_parent_class)-> - constructed (object); + G_OBJECT_CLASS (e_mail_config_import_page_parent_class)->constructed (object); gtk_orientable_set_orientation ( GTK_ORIENTABLE (page), GTK_ORIENTATION_VERTICAL); diff --git a/modules/startup-wizard/e-mail-config-import-progress-page.c b/modules/startup-wizard/e-mail-config-import-progress-page.c index 7ec04c77f4..7acdeb8d1d 100644 --- a/modules/startup-wizard/e-mail-config-import-progress-page.c +++ b/modules/startup-wizard/e-mail-config-import-progress-page.c @@ -169,8 +169,7 @@ mail_config_import_progress_page_constructed (GObject *object) page = E_MAIL_CONFIG_IMPORT_PROGRESS_PAGE (object); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_mail_config_import_progress_page_parent_class)-> - constructed (object); + G_OBJECT_CLASS (e_mail_config_import_progress_page_parent_class)->constructed (object); gtk_orientable_set_orientation ( GTK_ORIENTABLE (page), GTK_ORIENTATION_VERTICAL); |