aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/save-calendar/save-calendar.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2005-01-06 02:03:25 +0800
committerJP Rosevear <jpr@src.gnome.org>2005-01-06 02:03:25 +0800
commit7615f6d887c503dcef0386f53a5b03d65328c770 (patch)
treecea8fd366b5346d993d5855e0777a345419217ec /plugins/save-calendar/save-calendar.c
parent3de23fd24b4967a62d1f37bfddc3a1b9d43b1012 (diff)
downloadgsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.gz
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.bz2
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.lz
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.xz
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.zst
gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.zip
fix build for non gtk file chooser case
2005-01-05 JP Rosevear <jpr@novell.com> * save-calendar.c (ask_destination_and_save): fix build for non gtk file chooser case svn path=/trunk/; revision=28248
Diffstat (limited to 'plugins/save-calendar/save-calendar.c')
-rw-r--r--plugins/save-calendar/save-calendar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/save-calendar/save-calendar.c b/plugins/save-calendar/save-calendar.c
index 23dc40065c..48a0614704 100644
--- a/plugins/save-calendar/save-calendar.c
+++ b/plugins/save-calendar/save-calendar.c
@@ -180,7 +180,7 @@ ask_destination_and_save (EPlugin *ep, ECalPopupTargetSource *target, ECalSource
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog), extra_widget);
#else
dialog = gtk_file_selection_new (_("Select destination file"));
- gtk_box_pack_start (GTK_BOX (GTK_FILE_SELECTION (dialog)->main_vbox), extra_widget);
+ gtk_box_pack_start (GTK_BOX (GTK_FILE_SELECTION (dialog)->main_vbox), extra_widget, FALSE, TRUE, 0);
#endif
gtk_widget_show (GTK_WIDGET(combo));
gtk_widget_show (extra_widget);