diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-12 14:29:09 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-12 14:29:09 +0800 |
commit | 9b86a516810fb2d1eeb267b17046dc15849e3e53 (patch) | |
tree | 19d517165b86ef8a7ff32c88daf6d3a311535b9e /shell/e-shell.h | |
parent | 33423ed255ce0fa7a246f36da4cb5ef5d278f08d (diff) | |
download | gsoc2013-evolution-9b86a516810fb2d1eeb267b17046dc15849e3e53.tar.gz gsoc2013-evolution-9b86a516810fb2d1eeb267b17046dc15849e3e53.tar.zst gsoc2013-evolution-9b86a516810fb2d1eeb267b17046dc15849e3e53.zip |
[Fix #7643, Starting new view doesn't honor "view" settings.]
* e-shell-view-menu.c (command_open_folder_in_new_window): Pass
the parent @shell_view as the @template_view arg to
`e_shell_create_view()'
* e-shell-view.c (activate_shortcut_cb): Pass the _view as the
@template_view arg to `e_shell_create_view()'.
* e-shell-folder-commands.c
(e_shell_command_open_folder_in_other_window): Pass the parent
@shell_view as the @template_view arg to `e_shell_create_view()'.
* e-shell.c (e_shell_create_view): New arg @template_view.
(impl_Shell_createNewView): Pass %NULL as @template_view when
calling it.
(e_shell_restore_from_settings): Likewise.
svn path=/trunk/; revision=13618
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r-- | shell/e-shell.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h index 4c17930b43..8f413902bf 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -101,7 +101,8 @@ EShell *e_shell_new (const char *local_director EShellConstructResult *construct_result_return); EShellView *e_shell_create_view (EShell *shell, - const char *uri); + const char *uri, + EShellView *template_view); const char *e_shell_get_local_directory (EShell *shell); EShortcuts *e_shell_get_shortcuts (EShell *shell); |