aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-11-09 09:46:17 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2010-11-10 06:33:23 +0800
commite0a75a7125e2b3331966f74f3d042cc4575d8ede (patch)
treed7584d5e37f0dbfcdec9590b0bf16118c90d430c /shell
parent5e633737a81adfceae761589b1e464792ad51297 (diff)
downloadgsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar.gz
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar.bz2
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar.lz
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar.xz
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.tar.zst
gsoc2013-evolution-e0a75a7125e2b3331966f74f3d042cc4575d8ede.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);