CEditScriptPropertyCommand: Make use of push_back over operator<<
This commit is contained in:
parent
35eb097d13
commit
c0c2bca54f
|
@ -33,7 +33,7 @@ public:
|
|||
if (mIndex.isValid())
|
||||
{
|
||||
ASSERT(mInstances.size() == 1);
|
||||
OutPointers << mInstances[0]->PropertyData();
|
||||
OutPointers.push_back(mInstances[0]->PropertyData());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue