summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qsoundeffect/tst_qsoundeffect.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qsoundeffect/tst_qsoundeffect.cpp b/tests/auto/qsoundeffect/tst_qsoundeffect.cpp
index b918816..e76a4c5 100644
--- a/tests/auto/qsoundeffect/tst_qsoundeffect.cpp
+++ b/tests/auto/qsoundeffect/tst_qsoundeffect.cpp
@@ -72,7 +72,7 @@ void tst_QSoundEffect::initTestCase()
sound = new QSoundEffect;
QVERIFY(sound->source().isEmpty());
- QVERIFY(sound->loopCount() == 1);
+ QVERIFY(sound->loops() == 1);
QVERIFY(sound->volume() == 100);
QVERIFY(sound->isMuted() == false);
#endif
@@ -99,10 +99,10 @@ void tst_QSoundEffect::testSource()
void tst_QSoundEffect::testLooping()
{
#ifndef QT_MULTIMEDIA_QMEDIAPLAYER
- QSignalSpy readSignal(sound, SIGNAL(loopCountChanged()));
+ QSignalSpy readSignal(sound, SIGNAL(loopsChanged()));
- sound->setLoopCount(5);
- QCOMPARE(sound->loopCount(),5);
+ sound->setLoops(5);
+ QCOMPARE(sound->loops(),5);
sound->play();