diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-05-25 14:06:16 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-05-25 14:06:16 +0800 |
commit | c345604989402eab7e4c72bcf9e249792c0810bb (patch) | |
tree | d79cf7d9eda9d81d5a28ebab62470f1d1ca1058a /plugins | |
parent | 24368cf92dd5eaae1b41b3f191a25e2cbc45e824 (diff) | |
download | gsoc2013-evolution-c345604989402eab7e4c72bcf9e249792c0810bb.tar.gz gsoc2013-evolution-c345604989402eab7e4c72bcf9e249792c0810bb.tar.zst gsoc2013-evolution-c345604989402eab7e4c72bcf9e249792c0810bb.zip |
Added support for saving/attaching files/events/mails from/to remote shares
svn path=/trunk/; revision=32024
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/save-calendar/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/save-calendar/save-calendar.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog index 8f47a22bbc..3e551f391c 100644 --- a/plugins/save-calendar/ChangeLog +++ b/plugins/save-calendar/ChangeLog @@ -1,3 +1,9 @@ +2006-05-25 Srinivasa Ragavan <sragavan@novell.com> + + + * save-calendar.c: (ask_destination_and_save): Added code to save + calendar to remote shares. + 2006-04-22 Srinivasa Ragavan <sragavan@novell.com> * ical-format.c (do_save_calendar_ical): Ask for overwrite, if the diff --git a/plugins/save-calendar/save-calendar.c b/plugins/save-calendar/save-calendar.c index 947f4652d3..7a7e4289b7 100644 --- a/plugins/save-calendar/save-calendar.c +++ b/plugins/save-calendar/save-calendar.c @@ -175,6 +175,7 @@ ask_destination_and_save (EPlugin *ep, ECalPopupTargetSource *target, ECalSource gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog), extra_widget); + gtk_file_chooser_set_local_only (dialog, FALSE); #else dialog = gtk_file_selection_new (_("Select destination file")); gtk_box_pack_start (GTK_BOX (GTK_FILE_SELECTION (dialog)->main_vbox), extra_widget, FALSE, TRUE, 0); |