aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-03-31 21:19:52 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-04-01 00:10:54 +0800
commit6a5767cbd1fb6390478a888d94677a6ecb1d123f (patch)
treed3f558f375765992458aa1537bead013b598be31 /shell/e-shell-window.c
parentf8f89b0bfd8ef857dceed2a96df16a008290d53b (diff)
downloadgsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar.gz
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar.bz2
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar.lz
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar.xz
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.tar.zst
gsoc2013-evolution-6a5767cbd1fb6390478a888d94677a6ecb1d123f.zip
EShell: Remove "meego-mode" property.
The property is always FALSE. Remove both the property itself and any logic predicated on it.
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r--shell/e-shell-window.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c
index acf31a5eca..85c76d222a 100644
--- a/shell/e-shell-window.c
+++ b/shell/e-shell-window.c
@@ -452,9 +452,6 @@ shell_window_construct_toolbar (EShellWindow *shell_window)
gtk_widget_get_style_context (toolbar),
GTK_STYLE_CLASS_PRIMARY_TOOLBAR);
- if (e_shell_get_meego_mode (shell))
- gtk_widget_set_name (GTK_WIDGET (toolbar), "MeeGoToolbar");
-
/* XXX Having this separator in the UI definition doesn't work
* because GtkUIManager is unaware of the "New" button, so
* it makes the separator invisible. One possibility is to
@@ -495,16 +492,10 @@ shell_window_construct_toolbar (EShellWindow *shell_window)
gtk_toolbar_set_show_arrow (GTK_TOOLBAR (toolbar), FALSE);
if (e_shell_get_express_mode (shell))
gtk_box_pack_start (GTK_BOX (box), toolbar, FALSE, FALSE, 0);
- if (e_shell_get_meego_mode (shell))
- gtk_widget_set_name (GTK_WIDGET (toolbar), "MeeGoToolbar");
toolbar = e_shell_window_get_managed_widget (
shell_window, "/close-toolbar");
gtk_toolbar_set_show_arrow (GTK_TOOLBAR (toolbar), FALSE);
- if (e_shell_get_meego_mode (shell))
- gtk_box_pack_start (GTK_BOX (box), toolbar, FALSE, FALSE, 0);
- if (e_shell_get_meego_mode (shell))
- gtk_widget_set_name (GTK_WIDGET (toolbar), "MeeGoToolbar");
return box;
}