summaryrefslogtreecommitdiff
path: root/src/caja-freedesktop-dbus.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2018-09-17 09:25:41 +0200
committerraveit65 <[email protected]>2018-09-17 09:25:41 +0200
commitfb9a3cfdd0eeac12044ed2f317f51193bf44b6e0 (patch)
tree693f79455c95beab1880a58e5c5827b56f5b2515 /src/caja-freedesktop-dbus.c
parent0d7a79dc7d4e1cef1a69005f58d0c29872c3d55c (diff)
downloadcaja-fb9a3cfdd0eeac12044ed2f317f51193bf44b6e0.tar.bz2
caja-fb9a3cfdd0eeac12044ed2f317f51193bf44b6e0.tar.xz
Revert "add option to open multiple uri in tabs at startup"
This reverts commit fd1f45f308e418d1c1b44b968ce83f77e4f8a689.
Diffstat (limited to 'src/caja-freedesktop-dbus.c')
-rw-r--r--src/caja-freedesktop-dbus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/caja-freedesktop-dbus.c b/src/caja-freedesktop-dbus.c
index 28544f63..5047a58c 100644
--- a/src/caja-freedesktop-dbus.c
+++ b/src/caja-freedesktop-dbus.c
@@ -75,10 +75,10 @@ skeleton_handle_show_items_cb (CajaFreedesktopFileManager1 *object,
parent = g_file_get_parent (file);
if (parent != NULL) {
- caja_application_open_location (application, parent, file, startup_id, 0);
+ caja_application_open_location (application, parent, file, startup_id);
g_object_unref (parent);
} else {
- caja_application_open_location (application, file, NULL, startup_id, 0);
+ caja_application_open_location (application, file, NULL, startup_id);
}
g_object_unref (file);
@@ -105,7 +105,7 @@ skeleton_handle_show_folders_cb (CajaFreedesktopFileManager1 *object,
file = g_file_new_for_uri (uris[i]);
- caja_application_open_location (application, file, NULL, startup_id, 0);
+ caja_application_open_location (application, file, NULL, startup_id);
g_object_unref (file);
}