aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-10 16:02:09 -0700
committerDiva Canto2009-08-10 16:02:09 -0700
commit0c47f8e7ab1a1c28de218a3338143038ccaaa4a4 (patch)
tree02d966e07c23807b47f9f079260ea1d2b21f57a3 /OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
parentLast piece of cleaning up old inventory. Old IInventoryServices and ISecureIn... (diff)
downloadopensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.zip
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.gz
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.bz2
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.xz
Changed RequestRootFolder to GetRootFolder
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
index e70d985..41a0e43 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
@@ -276,9 +276,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
276 /// </summary> 276 /// </summary>
277 /// <param name="userID"></param> 277 /// <param name="userID"></param>
278 /// <returns>null if no root folder was found</returns> 278 /// <returns>null if no root folder was found</returns>
279 public InventoryFolderBase RequestRootFolder(UUID userID) 279 public InventoryFolderBase GetRootFolder(UUID userID)
280 { 280 {
281 return m_InventoryService.RequestRootFolder(userID); 281 return m_InventoryService.GetRootFolder(userID);
282 } 282 }
283 283
284 public List<InventoryItemBase> GetActiveGestures(UUID userId) 284 public List<InventoryItemBase> GetActiveGestures(UUID userId)