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

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