Fixed some warnings.

2000-09-11  Christopher James Lahey  <clahey@helixcode.com>

	* e-local-storage.c: Fixed some warnings.

svn path=/trunk/; revision=5344
This commit is contained in:
Christopher James Lahey
2000-09-11 20:42:31 +00:00
committed by Chris Lahey
parent e8db301af9
commit 562ace0144
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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));