aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-11-09 09:46:17 +0800
committerJavier Jardón <jjardon@gnome.org>2010-11-09 09:46:17 +0800
commit0c01510b4ffada8b6cbd15c5c55a96de9c6895ae (patch)
treeec03cc63dacbff32b66c310ea63152ad2a045cb9 /shell
parentecd4e2f295a3d97d6b92d4be6c9aff6abd44a253 (diff)
downloadgsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar.gz
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar.bz2
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar.lz
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar.xz
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.tar.zst
gsoc2013-evolution-0c01510b4ffada8b6cbd15c5c55a96de9c6895ae.zip
Use gtk_paned_new() instead gtk_[v|h]paned_new()
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-window-private.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index dee6450bcd..35f0fb3004 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -314,7 +314,7 @@ e_shell_window_private_constructed (EShellWindow *shell_window)
if (widget != NULL)
gtk_box_pack_start (box, widget, FALSE, FALSE, 0);
- widget = gtk_hpaned_new ();
+ widget = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start (box, widget, TRUE, TRUE, 0);
priv->content_pane = g_object_ref (widget);
gtk_widget_show (widget);