TEnumComboBox: Make use of push_back over operator<<
This commit is contained in:
parent
e11ad95d37
commit
6de158fae6
|
@ -24,7 +24,7 @@ public:
|
|||
if (It.Value() != TEnumReflection<EnumT>::ErrorValue())
|
||||
{
|
||||
addItem(It.Name());
|
||||
mValueList << It.Value();
|
||||
mValueList.push_back(It.Value());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue