diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-06 02:03:25 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-06 02:03:25 +0800 |
commit | 7615f6d887c503dcef0386f53a5b03d65328c770 (patch) | |
tree | cea8fd366b5346d993d5855e0777a345419217ec | |
parent | 3de23fd24b4967a62d1f37bfddc3a1b9d43b1012 (diff) | |
download | gsoc2013-evolution-7615f6d887c503dcef0386f53a5b03d65328c770.tar.gz 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
-rw-r--r-- | plugins/save-calendar/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/save-calendar/save-calendar.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog index a14aacba12..acfee8b0ca 100644 --- a/plugins/save-calendar/ChangeLog +++ b/plugins/save-calendar/ChangeLog @@ -1,3 +1,8 @@ +2005-01-05 JP Rosevear <jpr@novell.com> + + * save-calendar.c (ask_destination_and_save): fix build for non + gtk file chooser case + 2005-01-04 Philip Van Hoof <pvanhoof@gnome.org> * csv-format.c, rdf-format.c: Use standard error messages 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); |