[evolution-patches] vFolder update bug
- From: Not Zed <notzed ximian com>
- To: evolution-patches ximian com
- Subject: [evolution-patches] vFolder update bug
- Date: 13 Aug 2003 12:11:00 -0400
Well this code isn't in vFolder but i think its the only code that uses
it.
Any small removes to the vFolder weren't acted upon. I think it must've
been testing code inadvertently included.
Z
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/camel/ChangeLog,v
retrieving revision 1.1836.2.8
diff -u -3 -r1.1836.2.8 ChangeLog
--- ChangeLog 11 Aug 2003 19:35:33 -0000 1.1836.2.8
+++ ChangeLog 13 Aug 2003 16:05:11 -0000
@@ -1,3 +1,10 @@
+2003-08-13 Not Zed <NotZed Ximian com>
+
+ * camel-folder-summary.c (camel_folder_summary_remove_range): Fix
+ the range check, we were stopping removal of 1 or 2 removals, for
+ some odd and completely uncomprehensible reason. Perhaps debug
+ left in?
+
2003-08-11 Not Zed <NotZed Ximian com>
** See bug #45504.
Index: camel-folder-summary.c
===================================================================
RCS file: /cvs/gnome/evolution/camel/camel-folder-summary.c,v
retrieving revision 1.121
diff -u -3 -r1.121 camel-folder-summary.c
--- camel-folder-summary.c 18 Jun 2003 06:14:09 -0000 1.121
+++ camel-folder-summary.c 13 Aug 2003 16:05:11 -0000
@@ -1196,7 +1196,7 @@
**/
void camel_folder_summary_remove_range(CamelFolderSummary *s, int start, int end)
{
- if (end <= start+1)
+ if (end < start)
return;
CAMEL_SUMMARY_LOCK(s, summary_lock);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]