diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-30 10:28:44 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-30 10:28:44 +0800 |
commit | d6372c9ae9c6cdc415318630cbfa155e34d90668 (patch) | |
tree | be48abf24e4c3f767a234ad2146c47a0cf7c8abd /shell/e-shell-view.c | |
parent | 5122606b0116c9aae28ca8e4d7fa4b9c9c9f79ed (diff) | |
download | gsoc2013-evolution-d6372c9ae9c6cdc415318630cbfa155e34d90668.tar.gz gsoc2013-evolution-d6372c9ae9c6cdc415318630cbfa155e34d90668.tar.zst gsoc2013-evolution-d6372c9ae9c6cdc415318630cbfa155e34d90668.zip |
This is a first shoot at making shortcuts renameable [#3719];
unfinished. Also, it causes the shortcut bar to stop displaying
message unread count, but this is unfixable until we get rid of the
::LocalStorage interface, which should hopefully happen soon.
svn path=/trunk/; revision=10621
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index cf40178ddb..2c3a493c7f 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1105,16 +1105,17 @@ updated_folder_cb (EStorageSet *storage_set, { EShellView *shell_view; EShellViewPrivate *priv; - char *uri; shell_view = E_SHELL_VIEW (data); priv = shell_view->priv; - uri = g_strconcat (E_SHELL_URI_PREFIX, path, NULL); +#if 0 + char *uri = g_strconcat (E_SHELL_URI_PREFIX, path, NULL); /* Update the shortcut bar */ e_shortcuts_update_shortcut_by_uri (e_shell_get_shortcuts (priv->shell), uri); g_free (uri); +#endif /* Update the folder title bar and the window title bar */ update_for_current_uri (shell_view); |