Removed LLDynamicArray, LLDynamicArrayIndexed, LLDynamicArrayPtr, LLDLinked, LLDynamicQueuePtr, LLEnum, and LLIndexedQueue. Added new LLPointer variants.

This commit is contained in:
Shyotl
2015-06-19 18:27:21 -05:00
parent 1c627317ec
commit 09f4528bfb
122 changed files with 883 additions and 1632 deletions

View File

@@ -135,9 +135,9 @@ void AIFetchInventoryFolder::multiplex_impl(state_type run_state)
// Look up UUID by name.
LLInventoryModel::cat_array_t* categories;
gInventory.getDirectDescendentsOf(mParentFolder, categories);
for (S32 i = 0; i < categories->getLength(); ++i)
for (S32 i = 0; i < categories->size(); ++i)
{
LLPointer<LLViewerInventoryCategory> const& category(categories->get(i));
LLPointer<LLViewerInventoryCategory> const& category(categories->at(i));
if (category->getName() == mFolderName)
{
mFolderUUID = category->getUUID();