diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IXInventoryData.cs | 12 |
1 files changed, 6 insertions, 6 deletions
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 | |||
117 | bool DeleteItems(string[] fields, string[] vals); | 117 | bool DeleteItems(string[] fields, string[] vals); |
118 | 118 | ||
119 | /// <summary> | 119 | /// <summary> |
120 | /// Move an item to a new folder. | 120 | /// Move an item to another folder. |
121 | /// </summary> | 121 | /// </summary> |
122 | /// <returns>/returns> | 122 | /// <returns>/returns> |
123 | /// <param name='id'>UUID of the item</param> | 123 | /// <param name='id'>UUID of the item</param> |
124 | /// <param name='newParent'>UUID of the new folder.</param> | 124 | /// <param name='newParent'>UUID of the new parent folder.</param> |
125 | bool MoveItem(string id, string newParent); | 125 | bool MoveItem(string id, string newParentFolderID); |
126 | 126 | ||
127 | /// <summary> | 127 | /// <summary> |
128 | /// Move a folder to a new folder. | 128 | /// Move a folder to another folder. |
129 | /// </summary> | 129 | /// </summary> |
130 | /// <returns>/returns> | 130 | /// <returns>/returns> |
131 | /// <param name='id'>UUID of the item</param> | 131 | /// <param name='id'>UUID of the item</param> |
132 | /// <param name='newParent'>UUID of the new folder.</param> | 132 | /// <param name='newParent'>UUID of the new parent folder.</param> |
133 | bool MoveFolder(string id, string newParent); | 133 | bool MoveFolder(string id, string newParentFolderID); |
134 | 134 | ||
135 | XInventoryItem[] GetActiveGestures(UUID principalID); | 135 | XInventoryItem[] GetActiveGestures(UUID principalID); |
136 | int GetAssetPermissions(UUID principalID, UUID assetID); | 136 | int GetAssetPermissions(UUID principalID, UUID assetID); |