Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-08-27 09:06:57 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-08-27 09:06:57 (GMT)
commit6b31498bcccf5e228ba1a325206fb1d18e23e502 (patch)
tree18eb888d61c86d478c3c4f6162a7fe60088c23af /shell
parentc86fea736694b17beb9fb621fceac7e2970afe08 (diff)
Use gtk_box_pack_start instead of gtk_box_pack_start_defaults since it's
2008-08-27 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-view.c: (ev_view_goto_window_create): Use gtk_box_pack_start instead of gtk_box_pack_start_defaults since it's now deprecated. svn path=/trunk/; revision=3124
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-view.c b/shell/ev-view.c
index d00f98c..750ee5e 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -3374,7 +3374,7 @@ ev_view_goto_window_create (EvView *view)
g_signal_connect (view->goto_entry, "activate",
G_CALLBACK (ev_view_goto_entry_activate),
view);
- gtk_box_pack_start_defaults (GTK_BOX (hbox), view->goto_entry);
+ gtk_box_pack_start (GTK_BOX (hbox), view->goto_entry, TRUE, TRUE, 0);
gtk_widget_show (view->goto_entry);
gtk_widget_realize (view->goto_entry);
}