diff options
author | Not Zed <NotZed@Ximian.com> | 2005-08-10 10:04:31 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-08-10 10:04:31 +0800 |
commit | e14a0019e799ea6c91ca6320ab0ca6c3c89dc7b6 (patch) | |
tree | 11de1e177b25c26eed619ef60b187fc1835aba66 /mail/em-folder-browser.c | |
parent | 7bbb6938b70d7eef0de8e17de3541e447682d9c9 (diff) | |
download | gsoc2013-evolution-e14a0019e799ea6c91ca6320ab0ca6c3c89dc7b6.tar.gz gsoc2013-evolution-e14a0019e799ea6c91ca6320ab0ca6c3c89dc7b6.tar.zst gsoc2013-evolution-e14a0019e799ea6c91ca6320ab0ca6c3c89dc7b6.zip |
** See #312715.
2005-08-09 Not Zed <NotZed@Ximian.com>
** See #312715.
* em-folder-tree.c (emft_drop_folder_rec): removed.
(emft_drop_folder): call em_folder_utils_copy_folders to perform
the operation rather than: doing it sync when it shouldn't be, and
2; copying code redundantly.
* em-folder-utils.c (em_folder_utils_move_folder): remove this
redundant api.
(em_folder_utils_copy_folder): add delete flag.
(em_folder_utils_copy_folders): export this function. fix strange
argument order.
svn path=/trunk/; revision=30066
Diffstat (limited to 'mail/em-folder-browser.c')
-rw-r--r-- | mail/em-folder-browser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-folder-browser.c b/mail/em-folder-browser.c index 6d3937126d..1f89a2c569 100644 --- a/mail/em-folder-browser.c +++ b/mail/em-folder-browser.c @@ -585,7 +585,7 @@ emfb_folder_copy(BonoboUIComponent *uid, void *data, const char *path) emfb->view.folder->full_name, CAMEL_STORE_FOLDER_INFO_FAST, &ex)) != NULL) - em_folder_utils_copy_folder (fi); + em_folder_utils_copy_folder(fi, FALSE); camel_exception_clear (&ex); @@ -608,7 +608,7 @@ emfb_folder_move(BonoboUIComponent *uid, void *data, const char *path) emfb->view.folder->full_name, CAMEL_STORE_FOLDER_INFO_FAST, &ex)) != NULL) - em_folder_utils_move_folder (fi); + em_folder_utils_copy_folder(fi, TRUE); camel_exception_clear (&ex); |