From 61b816ebba57307410d877c4190e81b6469718cb Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 9 Nov 2012 01:18:11 +0000 Subject: 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(-) (limited to 'OpenSim/Data/IXInventoryData.cs') diff --git a/OpenSim/Data/IXInventoryData.cs b/OpenSim/Data/IXInventoryData.cs index 0df71f5..ca47506 100644 --- a/OpenSim/Data/IXInventoryData.cs +++ b/OpenSim/Data/IXInventoryData.cs @@ -117,20 +117,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); -- cgit v1.1