TEnumComboBox: Make use of nullptr
This commit is contained in:
parent
b4eadc2184
commit
43e4122461
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue