summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler/qmlprofilerengine.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-07-29 12:00:11 +0200
committerKai Koehne <kai.koehne@nokia.com>2011-07-29 12:19:11 +0200
commit1757228278004b56fcf3ff5f3fccd80216b7df2d (patch)
treee546475fe7a9f32ce23b6b157b666b6220c25faf /src/plugins/qmlprofiler/qmlprofilerengine.cpp
parentc031d4564e2a9cba04cc9d15b7e197251a2d79f7 (diff)
downloadqt-creator-1757228278004b56fcf3ff5f3fccd80216b7df2d.tar.gz
New QTC_CHECK warning replacing QTC_ASSERT(x, /**/)
Warn if the condition fails, but otherwise don't change the execution flow. Change-Id: Id7b14c745109b66960add967b2a4ef8d31e1a546 Reviewed-on: http://codereview.qt.nokia.com/2389 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerengine.cpp')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.cpp b/src/plugins/qmlprofiler/qmlprofilerengine.cpp
index 18b9f2669f..402f32c70a 100644
--- a/src/plugins/qmlprofiler/qmlprofilerengine.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilerengine.cpp
@@ -117,7 +117,7 @@ QmlProfilerEngine::QmlProfilerEnginePrivate::createRunner(ProjectExplorer::RunCo
qobject_cast<RemoteLinux::RemoteLinuxRunConfiguration *>(runConfiguration)) {
runner = new RemoteLinuxQmlProfilerRunner(rmConfig, parent);
} else {
- QTC_ASSERT(false, /**/);
+ QTC_CHECK(false);
}
return runner;
}