diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-13 13:44:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-13 13:44:23 +0800 |
commit | 2ffef2c837bd2febd4c4011b4ffd03cc3d86b609 (patch) | |
tree | 94f9f4cd8989edb58284d792f42942cc1226e964 /mail/mail-ops.c | |
parent | bc79d7668d144d75a5f99190f6480f2ef60bc9fb (diff) | |
download | gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar.gz gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar.bz2 gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar.lz gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar.xz gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.tar.zst gsoc2013-evolution-2ffef2c837bd2febd4c4011b4ffd03cc3d86b609.zip |
Back to the old way to avoid g_warnings, yay. Also fix append to send a
2000-07-13 Jeffrey Stedfast <fejj@helixcode.com>
* mail-ops.c (real_fetch_mail): Back to the old way to avoid
g_warnings, yay. Also fix append to send a flags argument (0)
svn path=/trunk/; revision=4139
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index f74c33c152..ece3fe493d 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -255,7 +255,8 @@ real_fetch_mail (gpointer user_data) goto cleanup; } - camel_folder_append_message (folder, msg, ex); + /* append with flags = 0 since this is a new message */ + camel_folder_append_message (folder, msg, 0, ex); if (camel_exception_get_id (ex) != CAMEL_EXCEPTION_NONE) { async_mail_exception_dialog ("Unable to write message", ex, fb); gtk_object_unref (GTK_OBJECT (msg)); |