diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-05-11 03:51:03 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-05-11 03:51:03 +0800 |
commit | a45637985e29d9249b4b9e74bacccc7603a1855f (patch) | |
tree | 0e289dd8e5145e14d9b19eebf63c4f94c299f5a8 /mail/mail-display.c | |
parent | 6fe392b30131574317e2e9715f2cee3eac94f9e7 (diff) | |
download | gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar.gz gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar.bz2 gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar.lz gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar.xz gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.tar.zst gsoc2013-evolution-a45637985e29d9249b4b9e74bacccc7603a1855f.zip |
Don't add any shortcuts here. (mail_config_remove_account): And don't
2002-05-10 Jeffrey Stedfast <fejj@ximian.com>
* mail-config.c (mail_config_add_account): Don't add any shortcuts
here.
(mail_config_remove_account): And don't remove them here. This
code has never worked properly.
* mail-ops.c (save_part_save): Use the exception enum names rather
than '1' since it makes the code clearer.
svn path=/trunk/; revision=16756
Diffstat (limited to 'mail/mail-display.c')
-rw-r--r-- | mail/mail-display.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-display.c b/mail/mail-display.c index a1c3e04ed7..267f28f078 100644 --- a/mail/mail-display.c +++ b/mail/mail-display.c @@ -97,7 +97,7 @@ static void write_data_written(CamelMimePart *part, char *name, int done, void *data) { int *ret = data; - + /* should we popup a dialogue to say its done too? */ *ret = done; } @@ -121,7 +121,7 @@ write_data_to_file (CamelMimePart *part, const char *name, gboolean unique) NULL); text = gtk_label_new (_("A file by that name already exists.\nOverwrite it?")); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dlg)->vbox), text, TRUE, TRUE, 4); - gtk_window_set_policy(GTK_WINDOW(dlg), FALSE, TRUE, FALSE); + gtk_window_set_policy (GTK_WINDOW (dlg), FALSE, TRUE, FALSE); gtk_widget_show (text); if (gnome_dialog_run_and_close (GNOME_DIALOG (dlg)) != 0) @@ -133,7 +133,7 @@ write_data_to_file (CamelMimePart *part, const char *name, gboolean unique) /* should this have progress of what its doing? */ mail_msg_wait (mail_save_part (part, name, write_data_written, &ret)); - + return ret; } |