diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-05-03 16:44:41 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-05-04 17:17:13 +0200 |
commit | b7f30ed9f39ef172a32d321251b08feba1a54a2d (patch) | |
tree | edc5debfb2c0f637a76eeb3e3699263726a680db /src/plugins/qmlprofiler | |
parent | e7cb7471c0aa2d8dbdf44b4255cd95159b086f2e (diff) | |
download | qt-creator-b7f30ed9f39ef172a32d321251b08feba1a54a2d.tar.gz |
QmlProfiler: Don't warn about using QmlProfiler in either Release or Debug mode
Diffstat (limited to 'src/plugins/qmlprofiler')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilertool.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertool.cpp b/src/plugins/qmlprofiler/qmlprofilertool.cpp index 279c39f26c..1c199fa77f 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertool.cpp @@ -166,10 +166,9 @@ QString QmlProfilerTool::displayName() const IAnalyzerTool::ToolMode QmlProfilerTool::mode() const { - return DebugMode; + return AnyMode; } - IAnalyzerEngine *QmlProfilerTool::createEngine(const AnalyzerStartParameters &sp, ProjectExplorer::RunConfiguration *runConfiguration) { |