aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadek Doulik <rodo@src.gnome.org>2003-12-01 20:31:29 +0800
committerRadek Doulik <rodo@src.gnome.org>2003-12-01 20:31:29 +0800
commit8accc252992dfcd8deb55d0afe9bfe6986fa166e (patch)
treef0954197f5dab5d07f4c525f734202d86af71ff2
parent4391b34ce5672af430085964ae9deea660ebe857 (diff)
downloadgsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.gz
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.bz2
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.lz
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.xz
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.zst
gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.zip
set flags only for new folder info
svn path=/trunk/; revision=23520
-rw-r--r--camel/camel-store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c
index 4bccf6fc0f..c0a213a22f 100644
--- a/camel/camel-store.c
+++ b/camel/camel-store.c
@@ -728,12 +728,12 @@ add_special_info (CamelStore *store, CamelFolderInfo *info, gchar *name, gchar *
g_assert(parent != NULL);
+ vinfo->flags |= CAMEL_FOLDER_NOINFERIORS | CAMEL_FOLDER_SUBSCRIBED;
+
/* link it into the right spot */
vinfo->sibling = parent->sibling;
parent->sibling = vinfo;
}
-
- vinfo->flags |= CAMEL_FOLDER_NOINFERIORS | CAMEL_FOLDER_SUBSCRIBED;
/* Fill in the new fields */
vinfo->full_name = g_strdup (full_name);