diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-local-storage.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 8605fed959..148c1a2c02 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-03-28 Ettore Perazzoli <ettore@ximian.com> + + * e-local-storage.c (async_xfer_folder_callback): + s/new_folder/destination_folder/ where appropriate, idiot. + 2001-03-28 Jon Trowbridge <trow@gnu.org> * e-shell-view-menu.c: In a fit of egomania, added myself to the diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index d796345a61..f98ed81897 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -841,7 +841,7 @@ async_xfer_folder_callback (EvolutionShellComponentClient *shell_component_clien e_folder_set_physical_uri (destination_folder, new_physical_uri); g_free (new_physical_uri); - e_local_folder_save (E_LOCAL_FOLDER (new_folder)); /* FIXME check for errors */ + e_local_folder_save (E_LOCAL_FOLDER (destination_folder)); /* FIXME check for errors */ new_folder (xfer_data->local_storage, item->destination_path, destination_folder); xfer_data->current_folder_item = xfer_data->current_folder_item->next; |