diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-03-31 21:30:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-04-01 00:10:54 +0800 |
commit | 7c38b34f2073ce895957a87da3113f19d62da86d (patch) | |
tree | 197b48d627cf0bfd9e97ce2128c05d38ea923244 /modules | |
parent | 6a5767cbd1fb6390478a888d94677a6ecb1d123f (diff) | |
download | gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar.gz gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar.bz2 gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar.lz gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar.xz gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.tar.zst gsoc2013-evolution-7c38b34f2073ce895957a87da3113f19d62da86d.zip |
Remove e_shell_get_startup_view().
No longer needed.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/startup-wizard/evolution-startup-wizard.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/startup-wizard/evolution-startup-wizard.c b/modules/startup-wizard/evolution-startup-wizard.c index 03c70b7e66..b14b85ecb0 100644 --- a/modules/startup-wizard/evolution-startup-wizard.c +++ b/modules/startup-wizard/evolution-startup-wizard.c @@ -161,24 +161,14 @@ startup_wizard_weak_ref_cb (gpointer data, static void startup_wizard_run (EStartupWizard *extension) { - EShell *shell; GtkWidget *window = NULL; - const gchar *startup_view; - gboolean express_mode; /* Accounts should now be loaded if there were any to load. * Check, and proceed with the Evolution Setup Assistant. */ - shell = startup_wizard_get_shell (extension); - express_mode = e_shell_get_express_mode (shell); - startup_view = e_shell_get_startup_view (shell); - if (startup_wizard_have_mail_account (extension)) return; - if (express_mode && g_strcmp0 (startup_view, "mail") != 0) - return; - if (window == NULL) { window = startup_wizard_new_assistant (extension); g_signal_connect ( |