Minor touchups to the foldertype commit. Missed unstaged files.

This commit is contained in:
Drake Arconis
2015-08-05 11:38:32 -04:00
committed by Latif Khalifa
parent 82fd0133ad
commit 3d4005dd4f
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ namespace OpenMetaverse.TestClient
if (found.Count.Equals(1))
{
// move the folder to the trash folder
Client.Inventory.MoveFolder(found[0].UUID, Client.Inventory.FindFolderForType(AssetType.TrashFolder));
Client.Inventory.MoveFolder(found[0].UUID, Client.Inventory.FindFolderForType(FolderType.Trash));
return String.Format("Moved folder {0} to Trash", found[0].Name);
}

View File

@@ -29,7 +29,7 @@ namespace OpenMetaverse.TestClient
{
uint objectLocalID = target.LocalID;
Client.Inventory.RequestDeRezToInventory(objectLocalID, DeRezDestination.AgentInventoryTake,
Client.Inventory.FindFolderForType(AssetType.TrashFolder),
Client.Inventory.FindFolderForType(FolderType.Trash),
UUID.Random());
return "removing " + target;
}