diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-07-23 10:04:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-07-23 10:04:14 +0800 |
commit | 97cc1d57adcdefb5b63a704f42f692e3cffb4014 (patch) | |
tree | 8cf6ca737156fa7ae603a5b479813f6a6c5830d5 /shell/e-local-storage.c | |
parent | 13c7f54818b9b6a25a47289768d17e5a885cec7a (diff) | |
download | gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.gz gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.tar.zst gsoc2013-evolution-97cc1d57adcdefb5b63a704f42f692e3cffb4014.zip |
Add an extra @type arg to the xferFolder and removeFolder methods in
the ShellComponent interface. Updated the EvolutionShellComponent
GTK+ wrapper and all the component accordingly. Get the calendar to
use this so it can delete both tasks and calendar folders.
svn path=/trunk/; revision=11300
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 6d83cfaaf6..cc92c43329 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -500,6 +500,7 @@ remove_folder (ELocalStorage *local_storage, evolution_shell_component_client_async_remove_folder (component_client, physical_uri, + e_folder_get_type_string (folder), component_async_remove_folder_callback, callback_data); @@ -705,6 +706,7 @@ async_xfer_folder_step (ELocalStorage *local_storage, evolution_shell_component_client_async_xfer_folder (component_client, e_folder_get_physical_uri (source_folder), physical_uri, + e_folder_get_type_string (source_folder), remove_source, component_client_callback, component_client_callback_data); |