summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qaudiodecoder
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2012-11-01 00:33:21 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-06 18:20:06 +0100
commit832c3929f2222e0e10ada33549c9d1cf90373018 (patch)
tree81160e77da3704c2403d03ad0cc60f06ace98ac8 /tests/auto/unit/qaudiodecoder
parent13fd00199a6a41af2bdbb876fe33c75547e3d996 (diff)
Rename namespace QtMultimedia -> QMultimedia
Main code, examples, tests and docs updated. Method: 1. Mass find+replace "QtMultimedia::" -> "QMultimedia::" 2. Hand-modified declaration in qtmedianamespace.h/cpp For consistency (with minimal disruption), namespaces with a "Qt" prefix will be renamed. Part of the Header Consistency Project (http://lists.qt-project.org/pipermail/development/2012-October/007570.html) Change-Id: I1fbc43a1aa91d996aa61869fcd8d05186bf7cf6d Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'tests/auto/unit/qaudiodecoder')
-rw-r--r--tests/auto/unit/qaudiodecoder/tst_qaudiodecoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/unit/qaudiodecoder/tst_qaudiodecoder.cpp b/tests/auto/unit/qaudiodecoder/tst_qaudiodecoder.cpp
index 96f9ddb9b..30b732928 100644
--- a/tests/auto/unit/qaudiodecoder/tst_qaudiodecoder.cpp
+++ b/tests/auto/unit/qaudiodecoder/tst_qaudiodecoder.cpp
@@ -348,7 +348,7 @@ void tst_QAudioDecoder::nullControl()
QVERIFY(d.error() == QAudioDecoder::ServiceMissingError);
QVERIFY(!d.errorString().isEmpty());
- QVERIFY(d.hasSupport("MIME") == QtMultimedia::MaybeSupported);
+ QVERIFY(d.hasSupport("MIME") == QMultimedia::MaybeSupported);
QVERIFY(d.state() == QAudioDecoder::StoppedState);
@@ -389,7 +389,7 @@ void tst_QAudioDecoder::nullService()
QVERIFY(d.error() == QAudioDecoder::ServiceMissingError);
QVERIFY(!d.errorString().isEmpty());
- QVERIFY(d.hasSupport("MIME") == QtMultimedia::MaybeSupported);
+ QVERIFY(d.hasSupport("MIME") == QMultimedia::MaybeSupported);
QVERIFY(d.state() == QAudioDecoder::StoppedState);