From 4f6cda3ba0c6aae13485fab29cf3adb678dcbecf Mon Sep 17 00:00:00 2001 From: Christiaan Janssen <christiaan.janssen@nokia.com> Date: Wed, 16 May 2012 12:17:51 +0200 Subject: [PATCH] QmlProfiler: added missing break in switch statement Change-Id: Ia6ca80e494c2bb61749e50be47bff8cf1cdaf108 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com> --- src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp b/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp index ee5d6510f27..f0ab3041933 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; -- GitLab