diff --git a/src/Editor/Widgets/TEnumComboBox.h b/src/Editor/Widgets/TEnumComboBox.h index 3d81ea9e..5eee5c70 100644 --- a/src/Editor/Widgets/TEnumComboBox.h +++ b/src/Editor/Widgets/TEnumComboBox.h @@ -23,8 +23,8 @@ public: { if (It.Value() != TEnumReflection::ErrorValue()) { - addItem( It.Name() ); - mValueList << It.Value(); + addItem(It.Name()); + mValueList.push_back(It.Value()); } } }