aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r--shell/e-shortcuts-view.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c
index 6cae3293ab..ecc2b1487e 100644
--- a/shell/e-shortcuts-view.c
+++ b/shell/e-shortcuts-view.c
@@ -104,19 +104,15 @@ icon_callback (EShortcutBar *shortcut_bar,
storage_set = e_shortcuts_get_storage_set (shortcuts);
folder_type_registry = e_storage_set_get_folder_type_registry (storage_set);
- if (strcmp ("evolution:/My Evolution", uri) == 0) {
- type = "My Evolution";
- } else {
- folder = e_storage_set_get_folder (storage_set,
- get_storage_set_path_from_uri (uri));
-
- if (folder == NULL)
- return NULL;
+ folder = e_storage_set_get_folder (storage_set,
+ get_storage_set_path_from_uri (uri));
+
+ if (folder == NULL)
+ return NULL;
- type = e_folder_get_type_string (folder);
- if (type == NULL)
- return NULL;
- }
+ type = e_folder_get_type_string (folder);
+ if (type == NULL)
+ return NULL;
/* FIXME mini icons? */
pixbuf = e_folder_type_registry_get_icon_for_type (folder_type_registry, type, FALSE);