diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 09:58:13 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 09:58:13 +0800 |
commit | 8f7f50d30ecc29c25252ad1f7d8d2e065acc1167 (patch) | |
tree | aa7c5bb90170f3f279860658faad647e5d2ae110 /shell | |
parent | e135a96c078be4a7d2c25e4ec84473c75f6382b2 (diff) | |
download | gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar.gz gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar.bz2 gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar.lz gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar.xz gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.tar.zst gsoc2013-evolution-8f7f50d30ecc29c25252ad1f7d8d2e065acc1167.zip |
Change type of toplevel node from "Summary" to "summary". [All the other
* 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.
svn path=/trunk/; revision=12234
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shortcuts.c | 1 | ||||
-rw-r--r-- | shell/e-summary-storage.c | 2 |
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; } |