aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-16 23:34:47 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-21 18:00:35 +0800
commitbd43c34901fbcc8202c3e96246fe77a31a4154db (patch)
tree4ebf5aa678e689d7491312c0a9fab33e825fb3c3 /libempathy-gtk
parent211f86a65565eaf3c3f0a9159dffe191298c0ff6 (diff)
downloadgsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar.gz
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar.bz2
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar.lz
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar.xz
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.tar.zst
gsoc2013-empathy-bd43c34901fbcc8202c3e96246fe77a31a4154db.zip
use gtk_paned_new() instead of gtk_hpaned_new()
https://bugzilla.gnome.org/show_bug.cgi?id=662903
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-individual-linker.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-linker.c b/libempathy-gtk/empathy-individual-linker.c
index c39ed2309..957a4e334 100644
--- a/libempathy-gtk/empathy-individual-linker.c
+++ b/libempathy-gtk/empathy-individual-linker.c
@@ -358,7 +358,8 @@ set_up (EmpathyIndividualLinker *self)
top_vbox = gtk_vbox_new (FALSE, 6);
/* Layout panes */
- paned = GTK_PANED (gtk_hpaned_new ());
+
+ paned = GTK_PANED (gtk_paned_new (GTK_ORIENTATION_HORIZONTAL));
/* Left column heading */
alignment = gtk_alignment_new (0.5, 0.5, 1, 1);