mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-24 23:43:31 +00:00
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())
|
if (mIndex.isValid())
|
||||||
{
|
{
|
||||||
ASSERT(mInstances.size() == 1);
|
ASSERT(mInstances.size() == 1);
|
||||||
OutPointers << mInstances[0]->PropertyData();
|
OutPointers.push_back(mInstances[0]->PropertyData());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user