aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-10-20 01:00:27 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-10-20 01:00:27 +0800
commitde2f1a322c3bed4738bcf08da9494756132ff01b (patch)
tree7020716bdecef94ef7752c41cb9df0f1d91f2939
parenta529462a842efca26d2d0786771837cf53b69346 (diff)
downloadgsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar.gz
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar.bz2
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar.lz
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar.xz
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.tar.zst
gsoc2013-evolution-de2f1a322c3bed4738bcf08da9494756132ff01b.zip
Removed an already-fixed FIXME comment. (imap4_summary_fetch_flags): Same.
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. svn path=/trunk/; revision=27630
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/providers/imap4/camel-imap4-summary.c8
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);