diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2011-06-13 10:01:23 -0400 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-06-13 10:01:23 -0400 |
commit | d6de7f5f0ff90775445c3dc353328301c66f0de1 (patch) | |
tree | 48af4ae340f5004212adcaa2e72f834e2601c5f3 /src/nautilus-notebook.c | |
parent | 2c37855719d90413705bd102ef5a29aac33f598a (diff) | |
download | nautilus-d6de7f5f0ff90775445c3dc353328301c66f0de1.tar.gz |
all: don't use deprecated Gtk[H/V]Box
Diffstat (limited to 'src/nautilus-notebook.c')
-rw-r--r-- | src/nautilus-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-notebook.c b/src/nautilus-notebook.c index c8707c9e3..e4794f161 100644 --- a/src/nautilus-notebook.c +++ b/src/nautilus-notebook.c @@ -335,7 +335,7 @@ build_tab_label (NautilusNotebook *nb, NautilusWindowSlot *slot) /* set hbox spacing and label padding (see below) so that there's an * equal amount of space around the label */ - hbox = gtk_hbox_new (FALSE, 4); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 4); gtk_widget_show (hbox); /* setup load feedback */ |