diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-16 06:22:20 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-16 06:22:20 +0800 |
commit | 0f13b8f0bc1c5cdc1009f1be9271133d2adecc43 (patch) | |
tree | d9044096545e2a3cf916a2ae02d57d81c2c9b53d /mail/component-factory.c | |
parent | 09cf0a78c465c7e746b84057ac3222d7e73032ee (diff) | |
download | gsoc2013-evolution-0f13b8f0bc1c5cdc1009f1be9271133d2adecc43.tar.gz gsoc2013-evolution-0f13b8f0bc1c5cdc1009f1be9271133d2adecc43.tar.zst gsoc2013-evolution-0f13b8f0bc1c5cdc1009f1be9271133d2adecc43.zip |
Update for CamelFolder changes.
* mail-ops.c (fetch_mail):
* component-factory.c (owner_unset_cb):
* message-list.c (message_list_set_folder): Update for CamelFolder
changes.
svn path=/trunk/; revision=3583
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 605789854f..0dc2700f3e 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -127,13 +127,12 @@ owner_unset_cb (EvolutionShellComponent *shell_component, gpointer user_data) { FolderBrowser *fb; - /* Close each open folder to make them sync their state to - * disk. We should do more cleanup than this, but then, we shouldn't - * be just exiting here either. FIXME. + /* Sync each open folder. We should do more cleanup than this, + * but then, we shouldn't be just exiting here either. FIXME. */ while (browsers) { fb = browsers->data; - camel_folder_close (fb->folder, FALSE, NULL); + camel_folder_sync (fb->folder, FALSE, NULL); browsers = browsers->next; } |