reviewed by: Pavel Cisler <pavel@eazel.com>

2001-01-22  Rebecca Schulman  <rebecka@eazel.com>

	reviewed by: Pavel Cisler <pavel@eazel.com>

	* libnautilus-extensions/nautilus-drag.c:
	(nautilus_drag_default_drop_action_for_icons):
	Switch the order of the arguments to
	gnome_vfs_check_same_fs_uris so that
	the source uri is first and the target uri
	of the drag second. This is rest of the fix
	for bugzilla.eazel.com 5498, which necessitated
	making the uri arguments to this function have
	a required ordering.
This commit is contained in:
Rebecca Schulman 2001-01-22 07:33:05 +00:00 committed by Rebecca Schulman
parent 2861839801
commit 166a391ac6
2 changed files with 2 additions and 2 deletions

View file

@ -314,7 +314,7 @@ nautilus_drag_default_drop_action_for_icons (GdkDragContext *context,
dropped_uri = gnome_vfs_uri_new (((DragSelectionItem *)items->data)->uri);
same_fs = TRUE;
gnome_vfs_check_same_fs_uris (target_uri, dropped_uri, &same_fs);
gnome_vfs_check_same_fs_uris (dropped_uri, target_uri, &same_fs);
gnome_vfs_uri_unref (dropped_uri);
gnome_vfs_uri_unref (target_uri);

View file

@ -314,7 +314,7 @@ nautilus_drag_default_drop_action_for_icons (GdkDragContext *context,
dropped_uri = gnome_vfs_uri_new (((DragSelectionItem *)items->data)->uri);
same_fs = TRUE;
gnome_vfs_check_same_fs_uris (target_uri, dropped_uri, &same_fs);
gnome_vfs_check_same_fs_uris (dropped_uri, target_uri, &same_fs);
gnome_vfs_uri_unref (dropped_uri);
gnome_vfs_uri_unref (target_uri);