aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-save-as.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-22 13:21:18 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-22 13:21:18 +0800
commit5e0bf557171d1b107513af36832a79976b458734 (patch)
treeeaa4e58547ee85eaa84978eda9d39dce12f35f70 /addressbook/gui/contact-editor/e-contact-save-as.c
parentf22daae8e661b7bc023c0e2c81d2966f5766f541 (diff)
downloadgsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar.gz
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar.bz2
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar.lz
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar.xz
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.tar.zst
gsoc2013-evolution-5e0bf557171d1b107513af36832a79976b458734.zip
Put up an error dialog if there's an error while saving. If the person
2001-10-22 Christopher James Lahey <clahey@ximian.com> * gui/contact-editor/e-contact-save-as.c (save_it): Put up an error dialog if there's an error while saving. If the person hits cancel on the "file exists" dialog, don't close the file selection dialog. Fixes Ximian bug #7055. svn path=/trunk/; revision=13865
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-save-as.c')
-rw-r--r--addressbook/gui/contact-editor/e-contact-save-as.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-save-as.c b/addressbook/gui/contact-editor/e-contact-save-as.c
index 9ca7d844e8..ec174615e9 100644
--- a/addressbook/gui/contact-editor/e-contact-save-as.c
+++ b/addressbook/gui/contact-editor/e-contact-save-as.c
@@ -33,6 +33,8 @@
#include <libgnome/gnome-i18n.h>
#include <errno.h>
#include <string.h>
+#include <libgnomeui/gnome-messagebox.h>
+#include <libgnomeui/gnome-stock.h>
static int file_exists(GtkFileSelection *filesel, const char *filename);
@@ -58,8 +60,21 @@ save_it(GtkWidget *widget, SaveAsInfo *info)
e_write_file(filename, info->vcard, O_WRONLY | O_CREAT | O_TRUNC);
break;
case 1 : /* cancel */
- break;
+ return;
}
+ } else if (error != 0) {
+ GtkWidget *dialog;
+ char *str;
+
+ str = g_strdup_printf ("Error saving %s: %s", filename, strerror(errno));
+ dialog = gnome_message_box_new (str, GNOME_MESSAGE_BOX_ERROR, GNOME_STOCK_BUTTON_OK, NULL);
+ g_free (str);
+
+ gnome_dialog_set_parent (GNOME_DIALOG (dialog), GTK_WINDOW (info->filesel));
+
+ gtk_widget_show (dialog);
+
+ return;
}
g_free (info->vcard);