diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-05 20:12:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-06 12:42:54 (GMT) |
commit | 62c5f9afc3bbe1e83ee63a1a8b9fe56b30c4849c (patch) | |
tree | cd026021827cb17c148aeee234fb957ac6f4fc86 /Source/QtDialog/CMakeSetupDialog.cxx | |
parent | bfdf1322e7638687c96b323b1df20fd9c08b3044 (diff) | |
download | CMake-62c5f9afc3bbe1e83ee63a1a8b9fe56b30c4849c.zip CMake-62c5f9afc3bbe1e83ee63a1a8b9fe56b30c4849c.tar.gz CMake-62c5f9afc3bbe1e83ee63a1a8b9fe56b30c4849c.tar.bz2 |
QtDialog: fix clang-tidy warnings
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.cxx')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index fda3e58..5b84597 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -41,7 +41,7 @@ QCMakeThread::QCMakeThread(QObject* p) : QThread(p) - , CMakeInstance(NULL) + , CMakeInstance(CM_NULLPTR) { } @@ -57,7 +57,7 @@ void QCMakeThread::run() emit this->cmakeInitialized(); this->exec(); delete this->CMakeInstance; - this->CMakeInstance = NULL; + this->CMakeInstance = CM_NULLPTR; } CMakeSetupDialog::CMakeSetupDialog() |