summaryrefslogtreecommitdiff
path: root/src/caja-window-manage-views.c
diff options
context:
space:
mode:
authorJasmine Hassan <[email protected]>2012-10-19 00:01:23 +0200
committerJasmine Hassan <[email protected]>2012-11-16 09:45:50 +0200
commit662d2326c5ce63c867b3d94fb2bb44d9a244399b (patch)
tree00b88f5d37a7b28dc84003dcaf5fa34f812963cd /src/caja-window-manage-views.c
parent2a1ef1efb5434f189e0463c834d5926bd931184e (diff)
downloadcaja-662d2326c5ce63c867b3d94fb2bb44d9a244399b.tar.bz2
caja-662d2326c5ce63c867b3d94fb2bb44d9a244399b.tar.xz
[window] add _full() versions of _go_to and _open() methods
These also have a callback to get the result of the operation. http://git.gnome.org/browse/nautilus/commit/?id=24515b87a91afd32885e07e32e2b4080584673a4
Diffstat (limited to 'src/caja-window-manage-views.c')
-rw-r--r--src/caja-window-manage-views.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/caja-window-manage-views.c b/src/caja-window-manage-views.c
index 35091bed..e34fc232 100644
--- a/src/caja-window-manage-views.c
+++ b/src/caja-window-manage-views.c
@@ -724,7 +724,7 @@ caja_window_slot_open_location (CajaWindowSlot *slot,
caja_window_slot_open_location_full (slot, location,
CAJA_WINDOW_OPEN_ACCORDING_TO_MODE,
- flags, NULL);
+ flags, NULL, NULL, NULL);
}
void
@@ -742,7 +742,7 @@ caja_window_slot_open_location_with_selection (CajaWindowSlot *slot,
}
caja_window_slot_open_location_full (slot, location,
CAJA_WINDOW_OPEN_ACCORDING_TO_MODE,
- flags, selection);
+ flags, selection, NULL, NULL);
}
@@ -766,7 +766,7 @@ caja_window_slot_go_home (CajaWindowSlot *slot, gboolean new_tab)
home = g_file_new_for_path (g_get_home_dir ());
caja_window_slot_open_location_full (slot, home,
CAJA_WINDOW_OPEN_ACCORDING_TO_MODE,
- flags, NULL);
+ flags, NULL, NULL, NULL);
g_object_unref (home);
}
@@ -2273,7 +2273,7 @@ caja_navigation_window_back_or_forward (CajaNavigationWindow *window,
caja_window_slot_open_location_full (slot, location,
CAJA_WINDOW_OPEN_ACCORDING_TO_MODE,
CAJA_WINDOW_OPEN_FLAG_NEW_TAB,
- NULL);
+ NULL, NULL, NULL);
}
else
{