aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-07-30 22:58:26 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-30 22:58:26 +0800
commit9085a5a18c23f894a0d29be73222ad7c55a03bf1 (patch)
tree7f2882617c1b44d523b6bba9d496ae218900d145 /shell/e-shell.c
parent1d2a02b6581372e13a2162bef597fb93a6d163ab (diff)
downloadgsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar.gz
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar.bz2
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar.lz
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar.xz
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.tar.zst
gsoc2013-evolution-9085a5a18c23f894a0d29be73222ad7c55a03bf1.zip
Remove unused 'preview' argument from e_import_assistant_new_simple().
We preview imported files by other means now.
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 5c00277253..c51c5dd44a 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1505,7 +1505,7 @@ e_shell_handle_uris (EShell *shell,
goto unique;
if (do_import) {
- n_handled = e_shell_utils_import_uris (shell, uris, FALSE);
+ n_handled = e_shell_utils_import_uris (shell, uris);
} else {
for (ii = 0; uris[ii] != NULL; ii++) {
gboolean handled;
@@ -1517,8 +1517,7 @@ e_shell_handle_uris (EShell *shell,
}
if (n_handled == 0)
- n_handled = e_shell_utils_import_uris (
- shell, uris, TRUE);
+ n_handled = e_shell_utils_import_uris (shell, uris);
}
return n_handled;