diff options
Diffstat (limited to 'shell/e-shell-folder-commands.c')
-rw-r--r-- | shell/e-shell-folder-commands.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c index a2b1055b5a..aee1d459e3 100644 --- a/shell/e-shell-folder-commands.c +++ b/shell/e-shell-folder-commands.c @@ -322,11 +322,8 @@ e_shell_command_copy_folder (EShell *shell, get_folder_name (shell, folder_path)); uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL); - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, - _("Copy folder"), - caption, - uri, - NULL, NULL); + folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Copy folder"), + caption, uri, NULL); g_free (caption); g_free (uri); @@ -369,11 +366,8 @@ e_shell_command_move_folder (EShell *shell, get_folder_name (shell, folder_path)); uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL); - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, - _("Move folder"), - caption, - uri, - NULL, NULL); + folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Move folder"), + caption, uri, NULL); g_free (caption); g_free (uri); |