QmlJSDebugger: Renamed "execution paused" to "animation paused"

The latter better describes what is paused, since expressions are
actually still executed.

Suggested by Kai.
This commit is contained in:
Thorbjørn Lindeijer
2011-03-22 10:37:14 +01:00
parent 0a813cd67c
commit a8bf2ba5e3
16 changed files with 52 additions and 52 deletions

View File

@@ -195,7 +195,7 @@ void QmlToolBar::setAnimationSpeed(qreal slowDownFactor)
m_emitSignals = true;
}
void QmlToolBar::setExecutionPaused(bool paused)
void QmlToolBar::setAnimationPaused(bool paused)
{
if (m_paused == paused)
return;
@@ -240,7 +240,7 @@ void QmlToolBar::setColorBoxColor(const QColor &color)
void QmlToolBar::activatePlayOnClick()
{
m_paused = !m_paused;
emit executionPausedChanged(m_paused);
emit animationPausedChanged(m_paused);
updatePlayAction();
}