aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-23 04:49:12 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-23 04:49:12 +0800
commit26a78dd6c542a56f384e474d23274231142ba9d9 (patch)
treed87a22578fa0b58eede202cdf75a54a42d870a71 /shell/e-local-storage.c
parent3e805202e49b8d75d53b69accf3fcc53901dbc20 (diff)
downloadgsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.gz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.bz2
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.lz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.xz
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.tar.zst
gsoc2013-evolution-26a78dd6c542a56f384e474d23274231142ba9d9.zip
`#if 0'ed out. (make_bold): Likewise.
* e-shell-folder-title-bar.c (label_realize_callback): `#if 0'ed out. (make_bold): Likewise. (e_shell_folder_title_bar_construct): Don't call it. * e-local-storage.c (component_async_remove_folder_callback): Only remove the directory if the component succeeds. svn path=/trunk/; revision=12392
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r--shell/e-local-storage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 5707c55aa1..8dcdff9342 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -466,9 +466,6 @@ component_async_remove_folder_callback (EvolutionShellComponentClient *shell_com
callback_data = (AsyncRemoveFolderCallbackData *) data;
- result = remove_folder_directory (E_LOCAL_STORAGE (callback_data->storage),
- callback_data->path);
-
storage_result = shell_component_result_to_storage_result (result);
/* If result == HASSUBFOLDERS then recurse delete the subfolders dir? */
@@ -479,6 +476,9 @@ component_async_remove_folder_callback (EvolutionShellComponentClient *shell_com
priv = E_LOCAL_STORAGE (callback_data->storage)->priv;
+ result = remove_folder_directory (E_LOCAL_STORAGE (callback_data->storage),
+ callback_data->path);
+
e_storage_removed_folder (E_STORAGE (callback_data->storage),
callback_data->path);