aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-local-storage.c10
2 files changed, 5 insertions, 10 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 1a3aedd696..601a89d4af 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2002-11-05 Ettore Perazzoli <ettore@ximian.com>
+ * e-local-storage.c (load_folder): Do add folders with an unknown
+ type.
+
+2002-11-05 Ettore Perazzoli <ettore@ximian.com>
+
* glade/e-shell-folder-creation-dialog.glade (ok_button): Set
response_id to GTK_RESPONSE_OK.
(cancel_button): Likewise, with GTK_RESPONSE_CANCEL.
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 6cdaa1d7b3..c36863bf72 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -201,16 +201,6 @@ load_folder (const char *physical_path,
return TRUE;
}
- /* Ignore the folder if it uses an unknown type. */
- if (! e_folder_type_registry_type_registered (local_storage->priv->folder_type_registry,
- e_folder_get_type_string (folder))) {
-#if 0
- g_warning ("Folder in %s has unknown type (%s)... ignoring",
- physical_path, e_folder_get_type_string (folder));
-#endif
- return TRUE;
- }
-
new_folder (local_storage, path, folder);
return TRUE;
}