From 43e412246150fcc1e0657c5c55f8bf8f50764e36 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 10 Jul 2020 15:58:57 -0400 Subject: [PATCH] TEnumComboBox: Make use of nullptr --- src/Editor/Widgets/TEnumComboBox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Editor/Widgets/TEnumComboBox.h b/src/Editor/Widgets/TEnumComboBox.h index 7faa7c37..3d81ea9e 100644 --- a/src/Editor/Widgets/TEnumComboBox.h +++ b/src/Editor/Widgets/TEnumComboBox.h @@ -16,7 +16,7 @@ class TEnumComboBox : public QComboBox public: /** Constructor */ - explicit TEnumComboBox(QWidget* pParent = 0) + explicit TEnumComboBox(QWidget* pParent = nullptr) : QComboBox(pParent) { for (typename TEnumReflection::CIterator It; It; ++It)