aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@nokia.com>2012-05-16 12:17:51 +0200
committerChristiaan Janssen <christiaan.janssen@nokia.com>2012-05-16 12:18:59 +0200
commit4f6cda3ba0c6aae13485fab29cf3adb678dcbecf (patch)
tree09f3b1edaae155a806d04899a7c87ee0c011e8e8 /src/plugins/qmlprofiler/qmlprofilerstatemanager.cpp
parent82644703460353b05f263c5893bbd822f446072c (diff)
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.cpp1
1 files changed, 1 insertions, 0 deletions
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;