From 24368cf92dd5eaae1b41b3f191a25e2cbc45e824 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Thu, 25 May 2006 06:04:48 +0000 Subject: Added code to save/attach files/mails/events to/from remote shares svn path=/trunk/; revision=32023 --- calendar/gui/e-calendar-table.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'calendar/gui/e-calendar-table.c') diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 259238bb42..955ee0fb58 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -1097,8 +1097,7 @@ e_calendar_table_on_save_as (EPopup *ep, EPopupItem *pitem, void *data) ECalModelComponent *comp_data; char *filename; char *ical_string; - FILE *file; - + comp_data = e_calendar_table_get_selected_comp (cal_table); if (comp_data == NULL) return; @@ -1112,16 +1111,10 @@ e_calendar_table_on_save_as (EPopup *ep, EPopupItem *pitem, void *data) g_warning ("Couldn't convert item to a string"); return; } + + e_write_file_uri (filename, ical_string); - file = g_fopen (filename, "w"); - if (file == NULL) { - g_warning ("Couldn't save item"); - return; - } - - fprintf (file, "%s", ical_string); g_free (ical_string); - fclose (file); } static void -- cgit v1.2.3