diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/imap4/camel-imap4-summary.c | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 4a33994b6e..f070247ef7 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2004-10-19 Jeffrey Stedfast <fejj@ximian.com> + + * providers/imap4/camel-imap4-summary.c (imap4_summary_fetch_all): + Removed an already-fixed FIXME comment. + (imap4_summary_fetch_flags): Same. + 2004-10-18 Jeffrey Stedfast <fejj@novell.com> * providers/imap4/camel-imap4-store.c (imap4_try_authenticate): diff --git a/camel/providers/imap4/camel-imap4-summary.c b/camel/providers/imap4/camel-imap4-summary.c index c79c36d4d7..706617f17b 100644 --- a/camel/providers/imap4/camel-imap4-summary.c +++ b/camel/providers/imap4/camel-imap4-summary.c @@ -927,10 +927,6 @@ imap4_summary_fetch_all (CamelFolderSummary *summary, guint32 first, guint32 las engine = ((CamelIMAP4Store *) folder->parent_store)->engine; - /* FIXME: would be a nice optimisation if we could size the - * 'added' array here rather than possibly having to grow it - * one element at a time (in the common case) in the - * untagged_fetch_all() callback */ total = last ? (last - first) + 1 : (imap4_summary->exists - first) + 1; fetch = g_new (struct imap4_fetch_all_t, 1); fetch->uid_hash = g_hash_table_new (g_str_hash, g_str_equal); @@ -973,10 +969,6 @@ imap4_summary_fetch_flags (CamelFolderSummary *summary, guint32 first, guint32 l engine = ((CamelIMAP4Store *) folder->parent_store)->engine; - /* FIXME: would be a nice optimisation if we could size the - * 'added' array here rather than possibly having to grow it - * one element at a time (in the common case) in the - * untagged_fetch_all() callback */ total = (last - first) + 1; fetch = g_new (struct imap4_fetch_all_t, 1); fetch->uid_hash = g_hash_table_new (g_str_hash, g_str_equal); |