diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-07-29 12:00:11 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-07-29 12:19:11 +0200 |
commit | 1757228278004b56fcf3ff5f3fccd80216b7df2d (patch) | |
tree | e546475fe7a9f32ce23b6b157b666b6220c25faf /src/plugins/qmljseditor | |
parent | c031d4564e2a9cba04cc9d15b7e197251a2d79f7 (diff) | |
download | qt-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/qmljseditor')
-rw-r--r-- | src/plugins/qmljseditor/qmljseditorplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index 10164bae0a..bc6ab10315 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -258,7 +258,7 @@ ExtensionSystem::IPlugin::ShutdownFlag QmlJSEditorPlugin::aboutToShutdown() void QmlJSEditorPlugin::initializeEditor(QmlJSEditor::QmlJSTextEditorWidget *editor) { - QTC_ASSERT(m_instance, /**/); + QTC_CHECK(m_instance); m_actionHandler->setupActions(editor); |