aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-find-toolbar.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2011-06-09 22:29:56 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2011-06-09 23:11:19 +0800
commitffae9a0909f5a12e510038840586044a77b7baec (patch)
tree21a5141eb756a6cafbee1ca0836db4901202bb38 /src/ephy-find-toolbar.c
parent0f61b9bd7ab89b70f1323f08b4f26a27b005d62a (diff)
downloadgsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar.gz
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar.bz2
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar.lz
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar.xz
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.tar.zst
gsoc2013-epiphany-ffae9a0909f5a12e510038840586044a77b7baec.zip
Use GtkOrientable interface instead of deprecated V/H widgets
Gtk[HV]Box, Gtk[HV]Separator, Gtk[HV]Paned are deprecated in GTK+ 3.2, so let's use the GtkOrientable interface instead. GtkBox is likely to dissapear soon too, so a migration to GtkGrid might be necessary at some point. https://bugzilla.gnome.org/show_bug.cgi?id=652201
Diffstat (limited to 'src/ephy-find-toolbar.c')
-rw-r--r--src/ephy-find-toolbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c
index 14c6c9da9..7acb56569 100644
--- a/src/ephy-find-toolbar.c
+++ b/src/ephy-find-toolbar.c
@@ -543,7 +543,7 @@ ephy_find_toolbar_init (EphyFindToolbar *toolbar)
alignment = gtk_alignment_new (0.0, 0.5, 1.0, 0.0);
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 0, 0, 2, 2);
- box = gtk_hbox_new (FALSE, 12);
+ box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
gtk_container_add (GTK_CONTAINER (alignment), box);
priv->label = gtk_label_new (NULL);