Renaming StopppedState to StoppedState

Change-Id: Ib23e9795960f40b46c0b2441ec03e8b1812033e5
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
This commit is contained in:
Angus Cummings
2012-06-07 11:01:28 +10:00
committed by Qt by Nokia
parent 931c2d3ffe
commit 80f37d2d80
5 changed files with 10 additions and 10 deletions

View File

@@ -171,7 +171,7 @@ QDeclarativeSoundInstance::QDeclarativeSoundInstance(QObject *parent)
, m_velocity(0, 0, 0)
, m_gain(1)
, m_pitch(1)
, m_requestState(QDeclarativeSoundInstance::StopppedState)
, m_requestState(QDeclarativeSoundInstance::StoppedState)
, m_coneInnerAngle(360)
, m_coneOuterAngle(360)
, m_coneOuterGain(0)
@@ -343,7 +343,7 @@ void QDeclarativeSoundInstance::stop()
#ifdef DEBUG_AUDIOENGINE
qDebug() << "QDeclarativeSoundInstance::stop()";
#endif
m_requestState = QDeclarativeSoundInstance::StopppedState;
m_requestState = QDeclarativeSoundInstance::StoppedState;
if (!m_instance)
return;
m_instance->stop();