mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-24 07:23:36 +00:00
TEnumComboBox: Make use of push_back over operator<<
This commit is contained in:
parent
e11ad95d37
commit
6de158fae6
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user