diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-12-28 17:28:24 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-01-11 11:43:19 +0100 |
commit | acf3e032099dc2f7a156e755edb23a3dd8305fc8 (patch) | |
tree | 626bf48c05f8512a84a45baee8f7b393c27766e8 /src/file-manager/fm-directory-view.c | |
parent | 977fc6383dc74a320ce951d4d0b2f81f31e9cdcf (diff) | |
download | nautilus-acf3e032099dc2f7a156e755edb23a3dd8305fc8.tar.gz |
window-slot: rename get_current_location -> get_current_uri
Diffstat (limited to 'src/file-manager/fm-directory-view.c')
-rw-r--r-- | src/file-manager/fm-directory-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file-manager/fm-directory-view.c b/src/file-manager/fm-directory-view.c index e9339e4c3..569408ffb 100644 --- a/src/file-manager/fm-directory-view.c +++ b/src/file-manager/fm-directory-view.c @@ -5824,7 +5824,7 @@ move_copy_selection_to_next_pane (FMDirectoryView *view, slot = nautilus_window_get_extra_slot (fm_directory_view_get_nautilus_window (view)); g_return_if_fail (slot != NULL); - dest_location = nautilus_window_slot_get_current_location (slot); + dest_location = nautilus_window_slot_get_current_uri (slot); g_return_if_fail (dest_location != NULL); move_copy_selection_to_location (view, copy_action, dest_location); @@ -5852,7 +5852,7 @@ action_move_to_next_pane_callback (GtkAction *action, gpointer callback_data) slot = nautilus_window_get_extra_slot (fm_directory_view_get_nautilus_window (view)); g_return_if_fail (slot != NULL); - dest_location = nautilus_window_slot_get_current_location (slot); + dest_location = nautilus_window_slot_get_current_uri (slot); g_return_if_fail (dest_location != NULL); move_copy_selection_to_location (view, GDK_ACTION_MOVE, dest_location); |