CPropertyModel: Make use of push_back over operator<<
This commit is contained in:
parent
90e71289a6
commit
6f35e8c760
|
@ -25,7 +25,7 @@ int CPropertyModel::RecursiveBuildArrays(IProperty* pProperty, int ParentID)
|
|||
else
|
||||
{
|
||||
MyID = mProperties.size();
|
||||
mProperties << SProperty();
|
||||
mProperties.push_back(SProperty());
|
||||
}
|
||||
|
||||
mProperties[MyID].pProperty = pProperty;
|
||||
|
|
Loading…
Reference in New Issue