aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 49786c8517..40a771c06a 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -62,8 +62,6 @@ struct _EShellPrivate {
gchar *geometry;
gchar *module_directory;
- gchar *startup_view;
-
guint inhibit_cookie;
gulong backend_died_handler_id;
@@ -652,11 +650,6 @@ shell_dispose (GObject *object)
priv->backend_died_handler_id = 0;
}
- if (priv->startup_view != NULL) {
- g_free (priv->startup_view);
- priv->startup_view = NULL;
- }
-
if (priv->registry != NULL) {
g_object_unref (priv->registry);
priv->registry = NULL;
@@ -1124,8 +1117,6 @@ e_shell_init (EShell *shell)
shell->priv->backends_by_scheme = backends_by_scheme;
shell->priv->safe_mode = e_file_lock_exists ();
- shell->priv->startup_view = NULL;
-
g_object_ref_sink (shell->priv->preferences_window);
/* Add our icon directory to the theme's search path
@@ -1782,12 +1773,3 @@ e_shell_cancel_quit (EShell *shell)
g_signal_stop_emission (shell, signals[QUIT_REQUESTED], 0);
}
-void
-e_shell_set_startup_view (EShell *shell,
- const gchar *view)
-{
- g_return_if_fail (E_IS_SHELL (shell));
-
- shell->priv->startup_view = g_strdup (view);
-}
-