Removed LLDynamicArray, LLDynamicArrayIndexed, LLDynamicArrayPtr, LLDLinked, LLDynamicQueuePtr, LLEnum, and LLIndexedQueue. Added new LLPointer variants.
This commit is contained in:
@@ -595,10 +595,10 @@ void LLPreviewGesture::addAnimations()
|
||||
// Copy into something we can sort
|
||||
std::vector<LLInventoryItem*> animations;
|
||||
|
||||
S32 count = items.count();
|
||||
S32 count = items.size();
|
||||
for(i = 0; i < count; ++i)
|
||||
{
|
||||
animations.push_back( items.get(i) );
|
||||
animations.push_back( items.at(i) );
|
||||
}
|
||||
|
||||
// Do the sort
|
||||
@@ -641,10 +641,10 @@ void LLPreviewGesture::addSounds()
|
||||
std::vector<LLInventoryItem*> sounds;
|
||||
|
||||
S32 i;
|
||||
S32 count = items.count();
|
||||
S32 count = items.size();
|
||||
for(i = 0; i < count; ++i)
|
||||
{
|
||||
sounds.push_back( items.get(i) );
|
||||
sounds.push_back( items.at(i) );
|
||||
}
|
||||
|
||||
// Do the sort
|
||||
|
||||
Reference in New Issue
Block a user