aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-10-30 07:23:12 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-10-30 07:23:12 +0800
commit921c64fb60dfb696590d45f2521a041213a91b0a (patch)
treef7330ec3ce785b6dddaed0f29675bd9606a5d189 /camel/providers/imap/camel-imap-store.h
parentc2f642c4e1c1dea3aef8bd0dedf11c4fb0d2f542 (diff)
downloadgsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar.gz
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar.bz2
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar.lz
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar.xz
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.tar.zst
gsoc2013-evolution-921c64fb60dfb696590d45f2521a041213a91b0a.zip
Don't emit a folder_subscribed signal if we are in the process of renaming
2001-10-29 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-store.c (subscribe_folder): Don't emit a folder_subscribed signal if we are in the process of renaming folders. (unsubscribe_folder): Same here but for the unsubscribe signal. (rename_folder): Unsubscribe from the folder being renamed and any subfolders it may have before actually renaming. Once the folder has been renamed, re-subscribe to it and it's subfolders with the new name. * camel-store.c (camel_folder_info_build): Sort the folder info's before constructing the tree. svn path=/trunk/; revision=14378
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r--camel/providers/imap/camel-imap-store.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h
index 25c416385e..09c7ddf9b2 100644
--- a/camel/providers/imap/camel-imap-store.h
+++ b/camel/providers/imap/camel-imap-store.h
@@ -91,7 +91,9 @@ struct _CamelImapStore {
guint32 capabilities, parameters;
char *namespace, dir_sep, *base_url, *storage_path;
GHashTable *authtypes, *subscribed_folders;
-
+
+ gboolean renaming;
+
#ifdef ENABLE_THREADS
EThread *async_thread;
#endif