From 4a552ead9ff84e77e9bbdb107b97432777a648d8 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 9 Dec 2008 15:25:01 +0100 Subject: use QTC_ASSERT instead of Q_ASSERT --- src/plugins/cmakeprojectmanager/cmakeproject.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp') 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 #include +#include -#include -#include #include +#include +#include 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(); -- cgit v1.2.1