From: Carlos Garcia Campos Date: Wed, 27 Aug 2008 09:06:57 +0000 (+0000) Subject: Use gtk_box_pack_start instead of gtk_box_pack_start_defaults since it's X-Git-Tag: EVINCE_2_23_91~13 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=6b31498bcccf5e228ba1a325206fb1d18e23e502;hp=c86fea736694b17beb9fb621fceac7e2970afe08;p=evince.git Use gtk_box_pack_start instead of gtk_box_pack_start_defaults since it's 2008-08-27 Carlos Garcia Campos * 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 --- diff --git a/ChangeLog b/ChangeLog index 6eaf5073..36425b13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-08-27 Carlos Garcia Campos + + * 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. + 2008-08-27 Carlos Garcia Campos * backend/djvu/Makefile.am: diff --git a/shell/ev-view.c b/shell/ev-view.c index d00f98c5..750ee5e4 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); }