diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-27 02:17:23 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-27 02:17:23 +0800 |
commit | 849f3cac38b3a9502a357b3bbf4d416ea0a5f40b (patch) | |
tree | 29a666254a3926242a0e8a51bc13faa73520c309 | |
parent | 2d412847ea2ae50c38fb1c3ece8bd1b7b754d565 (diff) | |
download | gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.gz gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.bz2 gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.lz gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.xz gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.zst gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.zip |
(load_folder): Always return TRUE, even in the
unknown-type case.
svn path=/trunk/; revision=18236
-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 7c9eecd879..d586926aff 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2002-09-26 Ettore Perazzoli <ettore@ximian.com> + + * e-local-storage.c (load_folder): Always return TRUE, even in the + unknown-type case. + 2002-09-25 Rodrigo Moya <rodrigo@ximian.com> * e-shell-importer.c (importer_file_page_new): set history_id on diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index a90a37ecf9..c5a19876c4 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -204,7 +204,7 @@ load_folder (const char *physical_path, e_folder_get_type_string (folder))) { g_warning ("Folder in %s has unknown type (%s)... ignoring", physical_path, e_folder_get_type_string (folder)); - return FALSE; + return TRUE; } new_folder (local_storage, path, folder); |