summaryrefslogtreecommitdiff
path: root/src/caja-freedesktop-dbus.c
diff options
context:
space:
mode:
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);
}