diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2011-03-22 10:37:14 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2011-03-22 10:40:46 +0100 |
commit | a8bf2ba5e3bae2a20a6ccce15e1bfaa15550bd1f (patch) | |
tree | 88788a802fe9c58c5d8132a57030256c12b61262 /src/plugins/qmljsinspector/qmljsclientproxy.cpp | |
parent | 0a813cd67c7d511e579bbd204a4b2d4563760880 (diff) | |
download | qt-creator-a8bf2ba5e3bae2a20a6ccce15e1bfaa15550bd1f.tar.gz |
QmlJSDebugger: Renamed "execution paused" to "animation paused"
The latter better describes what is paused, since expressions are
actually still executed.
Suggested by Kai.
Diffstat (limited to 'src/plugins/qmljsinspector/qmljsclientproxy.cpp')
-rw-r--r-- | src/plugins/qmljsinspector/qmljsclientproxy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qmljsinspector/qmljsclientproxy.cpp b/src/plugins/qmljsinspector/qmljsclientproxy.cpp index 80c117cea6..296d39af90 100644 --- a/src/plugins/qmljsinspector/qmljsclientproxy.cpp +++ b/src/plugins/qmljsinspector/qmljsclientproxy.cpp @@ -86,8 +86,8 @@ void ClientProxy::connectToServer() SIGNAL(selectMarqueeToolActivated())); connect(m_observerClient, SIGNAL(animationSpeedChanged(qreal)), SIGNAL(animationSpeedChanged(qreal))); - connect(m_observerClient, SIGNAL(executionPausedChanged(bool)), - SIGNAL(executionPausedChanged(bool))); + connect(m_observerClient, SIGNAL(animationPausedChanged(bool)), + SIGNAL(animationPausedChanged(bool))); connect(m_observerClient, SIGNAL(designModeBehaviorChanged(bool)), SIGNAL(designModeBehaviorChanged(bool))); connect(m_observerClient, SIGNAL(showAppOnTopChanged(bool)), @@ -553,10 +553,10 @@ void ClientProxy::setAnimationSpeed(qreal slowDownFactor) m_observerClient->setAnimationSpeed(slowDownFactor); } -void ClientProxy::setExecutionPaused(bool paused) +void ClientProxy::setAnimationPaused(bool paused) { if (isConnected()) - m_observerClient->setExecutionPaused(paused); + m_observerClient->setAnimationPaused(paused); } void ClientProxy::changeToColorPickerTool() |