Kick off debug lines.
authorSrinivasa Ragavan <sragavan@novell.com>
Mon, 28 Jul 2008 09:33:33 +0000 (09:33 +0000)
committerSrinivasa Ragavan <sragavan@src.gnome.org>
Mon, 28 Jul 2008 09:33:33 +0000 (09:33 +0000)
2008-07-28  Srinivasa Ragavan  <sragavan@novell.com>

* camel/camel-folder-summary.c: Kick off debug lines.

svn path=/trunk/; revision=9205

camel/ChangeLog
camel/camel-folder-summary.c

index 166b9da..7fc8612 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-28  Srinivasa Ragavan  <sragavan@novell.com>
+
+       * camel/camel-folder-summary.c: Kick off debug lines.
+
 2008-07-27  Srinivasa Ragavan  <sragavan@novell.com>
 
        * camel/camel-folder-summary.c: Fix unread count updates in folder
index 4c29b57..3035ead 100644 (file)
@@ -4313,13 +4313,13 @@ info_set_flags(CamelMessageInfo *info, guint32 flags, guint32 set)
        /* TODO: locking? */
 
        if (flags & CAMEL_MESSAGE_SEEN && ((set & CAMEL_MESSAGE_SEEN) != (mi->flags & CAMEL_MESSAGE_SEEN)))
-       { read = set & CAMEL_MESSAGE_SEEN ? 1 : -1; printf("Setting read as %d\n", set & CAMEL_MESSAGE_SEEN ? 1 : 0);}
+       { read = set & CAMEL_MESSAGE_SEEN ? 1 : -1; d(printf("Setting read as %d\n", set & CAMEL_MESSAGE_SEEN ? 1 : 0));}
 
        if (flags & CAMEL_MESSAGE_DELETED && ((set & CAMEL_MESSAGE_DELETED) != (mi->flags & CAMEL_MESSAGE_DELETED)))
-       { deleted = set & CAMEL_MESSAGE_DELETED ? 1 : -1; ;printf("Setting deleted as %d\n", set & CAMEL_MESSAGE_DELETED ? 1 : 0);}
+       { deleted = set & CAMEL_MESSAGE_DELETED ? 1 : -1; d(printf("Setting deleted as %d\n", set & CAMEL_MESSAGE_DELETED ? 1 : 0));}
 
        if (flags & CAMEL_MESSAGE_JUNK && ((set & CAMEL_MESSAGE_JUNK) != (mi->flags & CAMEL_MESSAGE_JUNK)))
-       { junk = set & CAMEL_MESSAGE_JUNK ? 1 : -1; ;printf("Setting junk as %d\n", set & CAMEL_MESSAGE_JUNK ? 1 : 0);}
+       { junk = set & CAMEL_MESSAGE_JUNK ? 1 : -1; d(printf("Setting junk as %d\n", set & CAMEL_MESSAGE_JUNK ? 1 : 0));}
        
        old = mi->flags;
        mi->flags = (old & ~flags) | (set & flags);