diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-29 06:31:07 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-29 06:31:07 +0800 |
commit | 838ab4dc66048dd74aa7905aae9eb5179a6fa533 (patch) | |
tree | 3468cd8360cfbaead3bd29138e4fdbd7c86fdb70 | |
parent | e3ac0bad97d70498defff189df7b2d6f0f5918d2 (diff) | |
download | gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar.gz gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar.bz2 gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar.lz gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar.xz gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.tar.zst gsoc2013-evolution-838ab4dc66048dd74aa7905aae9eb5179a6fa533.zip |
Sigh. Use the right variable, idiot. And fix a crash bug that
happened when doing dnd in the folder tree.
svn path=/trunk/; revision=8998
-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; |