diff options
author | hjk <qtc-committer@nokia.com> | 2008-12-09 15:25:01 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2008-12-09 15:25:01 +0100 |
commit | 4a552ead9ff84e77e9bbdb107b97432777a648d8 (patch) | |
tree | 15d3aece30ba664df96ee1ad7a905bfdf781f621 /src/plugins/cmakeprojectmanager/cmakeproject.cpp | |
parent | e99d8ce3fc67925437a9bef344b66db39ca232aa (diff) | |
download | qt-creator-4a552ead9ff84e77e9bbdb107b97432777a648d8.tar.gz |
use QTC_ASSERT instead of Q_ASSERT
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakeproject.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp index 581a92e9fb..423fa2dcb3 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp @@ -32,18 +32,20 @@ ***************************************************************************/ #include "cmakeproject.h" + #include "cmakeprojectconstants.h" #include "cmakeprojectnodes.h" +#include "cmakerunconfiguration.h" #include "cmakestep.h" #include "makestep.h" -#include "cmakerunconfiguration.h" #include <extensionsystem/pluginmanager.h> #include <cpptools/cppmodelmanagerinterface.h> +#include <utils/qtcassert.h> -#include <QProcess> -#include <QDir> #include <QtCore/QDebug> +#include <QtCore/QDir> +#include <QtCore/QProcess> using namespace CMakeProjectManager; using namespace CMakeProjectManager::Internal; @@ -550,7 +552,7 @@ void CMakeCbpParser::parseUnit() void CMakeCbpParser::parseUnknownElement() { - Q_ASSERT(isStartElement()); + QTC_ASSERT(isStartElement(), /**/); while (!atEnd()) { readNext(); |