aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog4
-rw-r--r--shell/e-shortcuts.c1
-rw-r--r--shell/e-summary-storage.c2
3 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index deeb935b5b..e61a302150 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,9 @@
2001-08-19 Ettore Perazzoli <ettore@ximian.com>
+ * e-summary-storage.c (e_summary_storage_new): Change type of
+ toplevel node from "Summary" to "summary". [All the other folder
+ types use lowercase names.]
+
* e-shortcuts.c (load_shortcuts): Also use the display name for
the storage.
diff --git a/shell/e-shortcuts.c b/shell/e-shortcuts.c
index 28b74d239c..c6c94c461a 100644
--- a/shell/e-shortcuts.c
+++ b/shell/e-shortcuts.c
@@ -1041,6 +1041,7 @@ e_shortcuts_add_default_group (EShortcuts *shortcuts)
/* FIXME: Inbox shortcut should point to something else for
people who won't care about using /Local Folders/Inbox */
+ e_shortcuts_add_shortcut (shortcuts, 0, -1, "evolution:/summary", _("Summary"), 0, "summary");
e_shortcuts_add_shortcut (shortcuts, 0, -1, "evolution:/local/Inbox", _("Inbox"), 0, "mail");
e_shortcuts_add_shortcut (shortcuts, 0, -1, "evolution:/local/Calendar", _("Calendar"), 0, "calendar");
e_shortcuts_add_shortcut (shortcuts, 0, -1, "evolution:/local/Tasks", _("Tasks"), 0, "tasks");
diff --git a/shell/e-summary-storage.c b/shell/e-summary-storage.c
index 200aee1a6b..de58b470f5 100644
--- a/shell/e-summary-storage.c
+++ b/shell/e-summary-storage.c
@@ -116,7 +116,7 @@ e_summary_storage_new (void)
storage = gtk_type_new (e_summary_storage_get_type ());
- e_storage_construct (storage, "/", "Summary");
+ e_storage_construct (storage, "/", "summary");
return storage;
}