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 /shell/e-local-storage.c | |
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
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |