diff options
author | Milan Crha <mcrha@redhat.com> | 2008-04-23 17:19:23 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-04-23 17:19:23 +0800 |
commit | 9364fe50368e2c48b1987edd43c92c1ecd1cd8cd (patch) | |
tree | 571bfca73375b28c93caee273708e721de3e6c0d /addressbook/gui/widgets | |
parent | 0696568dc90ebe0c1eab8e9b58a8f32707d1663c (diff) | |
download | gsoc2013-evolution-9364fe50368e2c48b1987edd43c92c1ecd1cd8cd.tar.gz gsoc2013-evolution-9364fe50368e2c48b1987edd43c92c1ecd1cd8cd.tar.zst gsoc2013-evolution-9364fe50368e2c48b1987edd43c92c1ecd1cd8cd.zip |
** Fix for bug #529254
2008-04-23 Milan Crha <mcrha@redhat.com>
** Fix for bug #529254
* e-util/e-util.c: (e_write_file_uri): Save file properly.
Handle either URI or filename. Return success or failure, not gint.
* addressbook/gui/widgets/eab-gui-util.c: (save_it):
Prototype and return value of e_write_file_uri has been changed.
svn path=/trunk/; revision=35409
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 27b81e7110..6b8973637b 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -353,7 +353,6 @@ save_it(GtkWidget *widget, SaveAsInfo *info) { const char *filename; char *uri; - gint error = 0; gint response = 0; @@ -370,8 +369,7 @@ save_it(GtkWidget *widget, SaveAsInfo *info) } } - error = e_write_file_uri (uri, info->vcard); - if (error != 0) { + if (!e_write_file_uri (uri, info->vcard)) { char *err_str_ext; if (info->has_multiple_contacts) { /* more than one, finding the total number of contacts might |