aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-09-12 04:42:31 +0800
committerChris Lahey <clahey@src.gnome.org>2000-09-12 04:42:31 +0800
commit562ace014447c0fdec304e814f4fb3a1304c758f (patch)
treeb67777b356fe36ab90ee5605326ab3cea3614f59 /shell/e-local-storage.c
parente8db301af9b3c31a16ab7612bc5b55e1f5da6186 (diff)
downloadgsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar.gz
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar.bz2
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar.lz
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar.xz
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.tar.zst
gsoc2013-evolution-562ace014447c0fdec304e814f4fb3a1304c758f.zip
Fixed some warnings.
2000-09-11 Christopher James Lahey <clahey@helixcode.com> * e-local-storage.c: Fixed some warnings. svn path=/trunk/; revision=5344
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r--shell/e-local-storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index b051938bea..11708a5801 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -196,7 +196,7 @@ load_folders (ELocalStorage *local_storage,
if (folder == NULL)
return FALSE;
- new_folder (E_STORAGE (local_storage), path, folder);
+ new_folder (local_storage, path, folder);
subfolder_directory_path = g_concat_dir_and_file (physical_path, SUBFOLDER_DIR_NAME);
}
@@ -356,7 +356,7 @@ component_async_create_folder_callback (EvolutionShellComponentClient *shell_com
e_folder_set_physical_uri (folder, callback_data->physical_uri);
if (e_local_folder_save (E_LOCAL_FOLDER (folder))) {
- new_folder (callback_data->storage, callback_data->path, folder);
+ new_folder (E_LOCAL_STORAGE(callback_data->storage), callback_data->path, folder);
} else {
rmdir (callback_data->physical_path);
gtk_object_unref (GTK_OBJECT (folder));