TEnumComboBox: Make use of nullptr

This commit is contained in:
Lioncash 2020-07-10 15:58:57 -04:00
parent b4eadc2184
commit 43e4122461
1 changed files with 1 additions and 1 deletions

View File

@ -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<EnumT>::CIterator It; It; ++It)