From 7615f6d887c503dcef0386f53a5b03d65328c770 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Wed, 5 Jan 2005 18:03:25 +0000 Subject: fix build for non gtk file chooser case 2005-01-05 JP Rosevear * save-calendar.c (ask_destination_and_save): fix build for non gtk file chooser case svn path=/trunk/; revision=28248 --- plugins/save-calendar/ChangeLog | 5 +++++ plugins/save-calendar/save-calendar.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * save-calendar.c (ask_destination_and_save): fix build for non + gtk file chooser case + 2005-01-04 Philip Van Hoof * 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); -- cgit v1.2.3