diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-03-07 22:27:54 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-03-07 22:27:54 +0800 |
commit | 1b5a2be5511354345887d954f156d6e61ca320b1 (patch) | |
tree | 82d2032e7cb8ad7ea8dbd9ae1d8502a9fdefa532 /modules | |
parent | 30869d1fb7a94911ba030c8e0b8fa3b6c1614365 (diff) | |
download | gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar.gz gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar.bz2 gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar.lz gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar.xz gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.tar.zst gsoc2013-evolution-1b5a2be5511354345887d954f156d6e61ca320b1.zip |
startup-wizard: Avoid em_account_editor_get_widget().
em_account_editor_get_widget() won't be around much longer.
Instead, use gtk_container_foreach() to scan for a GtkLabel.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/startup-wizard/evolution-startup-wizard.c | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/modules/startup-wizard/evolution-startup-wizard.c b/modules/startup-wizard/evolution-startup-wizard.c index 50db85710e..7dd1c679e8 100644 --- a/modules/startup-wizard/evolution-startup-wizard.c +++ b/modules/startup-wizard/evolution-startup-wizard.c @@ -127,6 +127,20 @@ startup_wizard_import_complete (EImport *import, e_config_target_changed (config, E_CONFIG_TARGET_CHANGED_STATE); } +static void +startup_wizard_tweak_welcome_label (GtkWidget *child) +{ + const gchar *welcome_text; + + welcome_text = + _("Welcome to Evolution. The next few screens will " + "allow Evolution to connect to your email accounts, " + "and to import files from other applications."); + + if (GTK_IS_LABEL (child)) + gtk_label_set_text (GTK_LABEL (child), welcome_text); +} + static gboolean startup_wizard_check_progress (EConfig *config, const gchar *page_id, @@ -499,12 +513,11 @@ startup_wizard_new_assistant (EStartupWizard *extension) gtk_assistant_set_page_title ( GTK_ASSISTANT (config->widget), widget, _("Welcome")); - widget = em_account_editor_get_widget (emae, "start_page_label"); - gtk_label_set_text ( - GTK_LABEL (widget), - _("Welcome to Evolution. The next few screens will " - "allow Evolution to connect to your email accounts, " - "and to import files from other applications.")); + /* The welcome page should be a GtkBox with a GtkLabel + * packed inside. We need to alter the GtkLabel text. */ + gtk_container_foreach ( + GTK_CONTAINER (widget), + (GtkCallback) startup_wizard_tweak_welcome_label, NULL); /* Finalize the EMAccountEditor along with the GtkAssistant. */ g_object_set_data_full ( |