aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-thread.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-07 15:08:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-07 15:08:09 +0800
commit4e919deeff40049f3ca1dda409d21ea84f7700bd (patch)
treecdfc42e2141a824966f86522d59e03ad1bda5d28 /camel/camel-folder-thread.h
parent27176351ae38247a7b7c656e73727d704b12c63e (diff)
downloadgsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar.gz
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar.bz2
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar.lz
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar.xz
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.tar.zst
gsoc2013-evolution-4e919deeff40049f3ca1dda409d21ea84f7700bd.zip
properly set the parent nodes for the re-parented phantom-node children.
2004-05-07 Not Zed <NotZed@Ximian.com> * camel-folder-thread.c (thread_summary): properly set the parent nodes for the re-parented phantom-node children. Wasn't that fun to debug! * camel-folder-thread.h: make order and re bitfields, saves 4 bytes/node. svn path=/trunk/; revision=25822
Diffstat (limited to 'camel/camel-folder-thread.h')
-rw-r--r--camel/camel-folder-thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-folder-thread.h b/camel/camel-folder-thread.h
index 8bb78e27a0..9e51016708 100644
--- a/camel/camel-folder-thread.h
+++ b/camel/camel-folder-thread.h
@@ -36,8 +36,8 @@ typedef struct _CamelFolderThreadNode {
*child;
const CamelMessageInfo *message;
char *root_subject; /* cached root equivalent subject */
- int re; /* re version of subject? */
- int order;
+ guint32 order:31;
+ guint32 re:1; /* re version of subject? */
} CamelFolderThreadNode;
typedef struct _CamelFolderThread {