From 6de158fae655a3f3b231a55cec898709227ff959 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 10 Jul 2020 16:11:10 -0400 Subject: [PATCH] TEnumComboBox: Make use of push_back over operator<< --- src/Editor/Widgets/TEnumComboBox.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); } } }