diff options
author | Radek Doulik <rodo@src.gnome.org> | 2003-12-01 20:31:29 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-12-01 20:31:29 +0800 |
commit | 8accc252992dfcd8deb55d0afe9bfe6986fa166e (patch) | |
tree | f0954197f5dab5d07f4c525f734202d86af71ff2 /camel/camel-store.c | |
parent | 4391b34ce5672af430085964ae9deea660ebe857 (diff) | |
download | gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.gz gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.tar.zst gsoc2013-evolution-8accc252992dfcd8deb55d0afe9bfe6986fa166e.zip |
set flags only for new folder info
svn path=/trunk/; revision=23520
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r-- | camel/camel-store.c | 4 |
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); |