diff options
author | 6 <NotZed@Ximian.com> | 2001-10-17 01:34:59 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-17 01:34:59 +0800 |
commit | 41802db26312f2d70ff5624e331e45277ce8a8ec (patch) | |
tree | 1ba4c61fa37c6e10942af3b24d9e24cbc85f33f6 /mail/folder-browser.h | |
parent | 1ca6ce72ac9952f1429873b3c129cdd643ee4462 (diff) | |
download | gsoc2013-evolution-41802db26312f2d70ff5624e331e45277ce8a8ec.tar.gz gsoc2013-evolution-41802db26312f2d70ff5624e331e45277ce8a8ec.tar.zst gsoc2013-evolution-41802db26312f2d70ff5624e331e45277ce8a8ec.zip |
New function to return the id of the currently executing proxied event.
2001-10-16 <NotZed@Ximian.com>
* mail-mt.c (mail_proxy_event_id): New function to return the id
of the currently executing proxied event.
* folder-browser.h: Added private field.
* folder-browser.c (folder_changed): Keep track of tasks
outstanding in the tasks list, locked access.
(FOLDER_BROWSER_LOCK, UNLOCK): Macros to lock the folder browser
for poking about in diff threads.
(folder_browser_finalise): Wait for any outstanding takss to
finish before cleaning ourself up.
(folder_browser_destroy): Move the seen_id handling to finalise,
also add a loading_id handling code.
(main_folder_changed): Remove our running task when done.
svn path=/trunk/; revision=13695
Diffstat (limited to 'mail/folder-browser.h')
-rw-r--r-- | mail/folder-browser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/folder-browser.h b/mail/folder-browser.h index 85a6d6bbaf..fcedd9e352 100644 --- a/mail/folder-browser.h +++ b/mail/folder-browser.h @@ -35,6 +35,8 @@ typedef enum _FolderBrowserSelectionState { struct _FolderBrowser { GtkTable parent; + + struct _FolderBrowserPrivate *priv; BonoboPropertyBag *properties; @@ -56,7 +58,7 @@ struct _FolderBrowser { char *new_uid; /* place to save the next uid during idle timeout */ char *loaded_uid; /* what we have loaded */ guint loading_id, seen_id; - + /* a folder we are expunging, dont use other than to compare the pointer value */ CamelFolder *expunging; |