TEnumComboBox: Make use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 16:11:10 -04:00
parent e11ad95d37
commit 6de158fae6
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ public:
{
if (It.Value() != TEnumReflection<EnumT>::ErrorValue())
{
addItem( It.Name() );
mValueList << It.Value();
addItem(It.Name());
mValueList.push_back(It.Value());
}
}
}