From 6391a2fad42363279aba3d99c737510d43cc5658 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Fri, 9 Nov 2012 01:18:11 +0000 Subject: [PATCH] minor: Adjust method doc on IXInventoryData MoveItem() and MoveFolder() to make it clear we're moving to an existing folder. --- OpenSim/Data/IXInventoryData.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenSim/Data/IXInventoryData.cs b/OpenSim/Data/IXInventoryData.cs index 8392acf15f..db4d4d3587 100644 --- a/OpenSim/Data/IXInventoryData.cs +++ b/OpenSim/Data/IXInventoryData.cs @@ -107,20 +107,20 @@ namespace OpenSim.Data bool DeleteItems(string[] fields, string[] vals); /// - /// Move an item to a new folder. + /// Move an item to another folder. /// /// /returns> /// UUID of the item - /// UUID of the new folder. - bool MoveItem(string id, string newParent); + /// UUID of the new parent folder. + bool MoveItem(string id, string newParentFolderID); /// - /// Move a folder to a new folder. + /// Move a folder to another folder. /// /// /returns> /// UUID of the item - /// UUID of the new folder. - bool MoveFolder(string id, string newParent); + /// UUID of the new parent folder. + bool MoveFolder(string id, string newParentFolderID); XInventoryItem[] GetActiveGestures(UUID principalID); int GetAssetPermissions(UUID principalID, UUID assetID);