CTemplateEditDialog: Make use of push_back over <<
Same behavior, more immediately readable.
This commit is contained in:
parent
b2e8c18298
commit
412b29b6f1
|
@ -342,7 +342,7 @@ void CTemplateEditDialog::FindEquivalentProperties(IProperty* pProperty)
|
|||
|
||||
if (pEquivalentProperty)
|
||||
{
|
||||
mEquivalentProperties << pEquivalentProperty;
|
||||
mEquivalentProperties.push_back(pEquivalentProperty);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue