diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-12 04:42:31 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-12 04:42:31 +0800 |
commit | 562ace014447c0fdec304e814f4fb3a1304c758f (patch) | |
tree | b67777b356fe36ab90ee5605326ab3cea3614f59 | |
parent | e8db301af9b3c31a16ab7612bc5b55e1f5da6186 (diff) | |
download | gsoc2013-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
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-local-storage.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 408b6cfc87..30d92a9d71 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2000-09-11 Christopher James Lahey <clahey@helixcode.com> + + * e-local-storage.c: Fixed some warnings. + 2000-09-11 Ettore Perazzoli <ettore@helixcode.com> * e-shell-folder-selection-dialog.c (set_default_folder): Work on 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)); |