diff options
author | Christiaan Janssen <christiaan.janssen@nokia.com> | 2012-05-16 12:17:51 +0200 |
---|---|---|
committer | Christiaan Janssen <christiaan.janssen@nokia.com> | 2012-05-16 12:18:59 +0200 |
commit | 4f6cda3ba0c6aae13485fab29cf3adb678dcbecf (patch) | |
tree | 09f3b1edaae155a806d04899a7c87ee0c011e8e8 /src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp | |
parent | 82644703460353b05f263c5893bbd822f446072c (diff) | |
download | qt-creator-4f6cda3ba0c6aae13485fab29cf3adb678dcbecf.tar.gz |
QmlProfiler: added missing break in switch statement
Change-Id: Ia6ca80e494c2bb61749e50be47bff8cf1cdaf108
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp b/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp index ee5d6510f2..f0ab304193 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp @@ -142,6 +142,7 @@ void QmlProfilerStateManager::setCurrentState(QmlProfilerState newState) case AppKilled: QTC_ASSERT(d->m_currentState == AppDying, qDebug() << "from" << stringForState(d->m_currentState)); + break; default: qDebug() << tr("Switching to unknown state in %1:%2").arg(QString(__FILE__), QString::number(__LINE__)); break; |