TEnumComboBox: Make use of nullptr

This commit is contained in:
Lioncash 2020-07-10 15:58:57 -04:00
parent b4eadc2184
commit 43e4122461

View File

@ -16,7 +16,7 @@ class TEnumComboBox : public QComboBox
public: public:
/** Constructor */ /** Constructor */
explicit TEnumComboBox(QWidget* pParent = 0) explicit TEnumComboBox(QWidget* pParent = nullptr)
: QComboBox(pParent) : QComboBox(pParent)
{ {
for (typename TEnumReflection<EnumT>::CIterator It; It; ++It) for (typename TEnumReflection<EnumT>::CIterator It; It; ++It)