From 0adb39b6b0d8a41ce80444b86be9555719d2552a Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Tue, 19 Jun 2001 23:48:12 +0000 Subject: add ui (forward_cmd): implement forward command 2001-06-19 JP Rosevear * gui/dialogs/task-editor.c (task_editor_init): add ui (forward_cmd): implement forward command * gui/dialogs/comp-editor.c (save_as_ok): bug fix, seems to work now svn path=/trunk/; revision=10315 --- calendar/gui/dialogs/comp-editor.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'calendar/gui/dialogs/comp-editor.c') diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 5347a40df3..bdcaefd269 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -23,9 +23,10 @@ #include #endif +#include #include #include -#include +#include #include #include #include @@ -728,20 +729,18 @@ save_as_ok (GtkWidget *widget, gpointer data) { CompEditor *editor = COMP_EDITOR (data); CompEditorPrivate *priv; + struct stat s; char *path; - int fd, ret = 0; + int ret = 0; priv = editor->priv; path = gtk_file_selection_get_filename (GTK_FILE_SELECTION (priv->filesel)); - fd = open (path, O_RDONLY); - if (fd != -1) { + if (stat (path, &s) == 0) { GtkWidget *dlg; GtkWidget *text; - close (fd); - dlg = gnome_dialog_new (_("Overwrite file?"), GNOME_STOCK_BUTTON_YES, GNOME_STOCK_BUTTON_NO, @@ -755,6 +754,7 @@ save_as_ok (GtkWidget *widget, gpointer data) } if (ret == 0) { + FILE *file; gchar *ical_string; icalcomponent *top_level; @@ -784,15 +784,15 @@ save_as_ok (GtkWidget *widget, gpointer data) ical_string = icalcomponent_as_ical_string (top_level); - fd = open (path, O_WRONLY); - if (fd == -1) { + file = fopen (path, "w"); + if (file == NULL) { g_warning ("Couldn't save item"); gtk_main_quit (); return; } - write (fd, ical_string, strlen (ical_string)); - close (fd); + fprintf (file, ical_string); + fclose (file); gtk_main_quit (); } -- cgit v1.2.3