diff options
author | Dan Winship <danw@src.gnome.org> | 2001-01-19 07:29:04 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-01-19 07:29:04 +0800 |
commit | 4b6e393ab98a7c116db779e8a17d6762210409ef (patch) | |
tree | de5240697b848a685bb773337a0fd08721d5fcc7 /camel | |
parent | e3297a5f71f408b9ed93c81a25af54c13b93f848 (diff) | |
download | gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar.gz gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar.bz2 gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar.lz gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar.xz gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.tar.zst gsoc2013-evolution-4b6e393ab98a7c116db779e8a17d6762210409ef.zip |
Oops. Somewhere in one of the reorgs, the code to add new messages to the
* providers/imap/camel-imap-folder.c (imap_update_summary): Oops.
Somewhere in one of the reorgs, the code to add new messages to
the CamelFolderChangeInfo structure got removed. Fix that.
svn path=/trunk/; revision=7627
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 49871b60e6..6caa8e82b5 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2001-01-18 Dan Winship <danw@ximian.com> + + * providers/imap/camel-imap-folder.c (imap_update_summary): Oops. + Somewhere in one of the reorgs, the code to add new messages to + the CamelFolderChangeInfo structure got removed. Fix that. + 2001-01-17 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-summary.c (message_info_load): Add diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 1c8d793074..56de2bbe06 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* camel-imap-folder.c: Abstract class for an imap folder */ +/* camel-imap-folder.c: class for an imap folder */ /* * Authors: Jeffrey Stedfast <fejj@helixcode.com> @@ -973,6 +973,7 @@ imap_update_summary (CamelFolder *folder, int first, int last, for (i = 0; i < messages->len; i++) { mi = messages->pdata[i]; camel_folder_summary_add (folder->summary, mi); + camel_folder_change_info_add_uid (changes, camel_message_info_uid (mi)); } g_ptr_array_free (messages, TRUE); } |