diff options
author | Jason Leach <jleach@ximian.com> | 2001-06-06 01:10:32 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2001-06-06 01:10:32 +0800 |
commit | 8f366de2a4fb5c5bddab80667a821c1acee91c21 (patch) | |
tree | 70ca712fb4bfd275b1b94d9270cc3a7e82efa96c /shell/e-shell-view.c | |
parent | bd19a9d79d73216721b8409b65be9bfc9928f12c (diff) | |
download | gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar.gz gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar.bz2 gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar.lz gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar.xz gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.tar.zst gsoc2013-evolution-8f366de2a4fb5c5bddab80667a821c1acee91c21.zip |
(Fixing bug #1299: Shell saves shortcuts when display name changes)
2001-06-04 Jason Leach <jleach@ximian.com>
(Fixing bug #1299: Shell saves shortcuts when display name
changes)
* e-shortcuts.c (class_init): New signal: "update_shortcut".
* e-shortcuts-view-model.c (e_shortcuts_view_model_construct):
Connect thew new signal here.
* e-shortcuts-view-model.c (shortcuts_update_shortcut_cb): New
function, uses the new e_shortcut_model_update_item().
* e-shell-view.c (corba_interface_set_folder_bar_label): Fix a
warning here.
svn path=/trunk/; revision=10116
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 7166a50454..7c2814de8b 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1083,8 +1083,8 @@ corba_interface_change_current_view_cb (EvolutionShellView *shell_view, static void corba_interface_set_title (EvolutionShellView *shell_view, - const char *title, - void *data) + const char *title, + void *data) { EShellView *view; @@ -1096,9 +1096,9 @@ corba_interface_set_title (EvolutionShellView *shell_view, } static void -corba_interface_set_folder_bar_label (EvolutionShellView *shell_view, - const char *text, - void *data) +corba_interface_set_folder_bar_label (EvolutionShellView *evolution_shell_view, + const char *text, + void *data) { EShellView *shell_view; EShellViewPrivate *priv; @@ -1110,7 +1110,7 @@ corba_interface_set_folder_bar_label (EvolutionShellView *shell_view, priv = shell_view->priv; e_shell_folder_title_bar_set_folder_bar_label (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar), - text); + text); } static void |