mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-24 15:33:43 +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())
|
if (It.Value() != TEnumReflection<EnumT>::ErrorValue())
|
||||||
{
|
{
|
||||||
addItem( It.Name() );
|
addItem(It.Name());
|
||||||
mValueList << It.Value();
|
mValueList.push_back(It.Value());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user