diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-19 23:29:19 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-19 23:29:19 +0800 |
commit | 3e519c4e1469b93c8fc6684b6aae53779d4ff270 (patch) | |
tree | 2a68b052adcd371aa3c2308d0ce2282546dfb64b /shell/e-shell-folder-commands.c | |
parent | 0b11ddccb9aa109b28f69fefb790453b558a096c (diff) | |
download | gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar.gz gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar.bz2 gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar.lz gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar.xz gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.tar.zst gsoc2013-evolution-3e519c4e1469b93c8fc6684b6aae53779d4ff270.zip |
Renamed the "NewWindow" verb into "OpenFolderInNewWindow". Got the
`File -> Folder -> Open in New Window' menu item to work.
svn path=/trunk/; revision=9893
Diffstat (limited to 'shell/e-shell-folder-commands.c')
-rw-r--r-- | shell/e-shell-folder-commands.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c index 4d0342f7de..34cb2d0ac3 100644 --- a/shell/e-shell-folder-commands.c +++ b/shell/e-shell-folder-commands.c @@ -31,6 +31,8 @@ #include "e-shell-folder-creation-dialog.h" +/* Create new folder. */ + void e_shell_command_create_new_folder (EShell *shell, EShellView *shell_view) @@ -55,6 +57,8 @@ e_shell_command_create_new_folder (EShell *shell, } +/* Open folder in other window. */ + void e_shell_command_open_folder_in_other_window (EShell *shell, EShellView *shell_view) @@ -63,10 +67,12 @@ e_shell_command_open_folder_in_other_window (EShell *shell, g_return_if_fail (E_IS_SHELL (shell)); g_return_if_fail (shell_view != NULL && E_IS_SHELL_VIEW (shell_view)); - g_warning ("To be implemented"); + e_shell_new_view (shell, e_shell_view_get_current_uri (shell_view)); } +/* Copy folder. */ + void e_shell_command_copy_folder (EShell *shell, EShellView *shell_view) @@ -79,6 +85,8 @@ e_shell_command_copy_folder (EShell *shell, } +/* Move folder. */ + void e_shell_command_move_folder (EShell *shell, EShellView *shell_view) |