diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-17 00:07:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-21 18:00:35 +0800 |
commit | 76d770933b31a9a928942dc0782b0cdb23ea7223 (patch) | |
tree | 457e48adb427f1c264b1bab8cdf1ebd060a74d3d /src/ev-sidebar.c | |
parent | bd43c34901fbcc8202c3e96246fe77a31a4154db (diff) | |
download | gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.gz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.bz2 gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.lz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.xz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.zst gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.zip |
use gtk_box_new() instead of gtk_[h,v]box_new()
https://bugzilla.gnome.org/show_bug.cgi?id=662903
Diffstat (limited to 'src/ev-sidebar.c')
-rw-r--r-- | src/ev-sidebar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ev-sidebar.c b/src/ev-sidebar.c index 1d0b2df2f..a50736982 100644 --- a/src/ev-sidebar.c +++ b/src/ev-sidebar.c @@ -152,15 +152,15 @@ ev_sidebar_init (EvSidebar *ev_sidebar) G_TYPE_INT); /* create a 6 6 6 0 border with GtkBoxes */ - hbox = gtk_hbox_new (FALSE, 6); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); gtk_box_pack_start (GTK_BOX (ev_sidebar), hbox, TRUE, TRUE, 6); - vbox = gtk_vbox_new (FALSE, 6); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); - gtk_box_pack_start (GTK_BOX (hbox), gtk_vbox_new (FALSE, 0), FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (hbox), gtk_box_new (GTK_ORIENTATION_VERTICAL, 0), FALSE, FALSE, 0); /* top option menu */ - hbox = gtk_hbox_new (FALSE, 6); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); |