diff options
author | Andrew den Exter <andrew.den-exter@nokia.com> | 2010-02-17 01:39:20 (GMT) |
---|---|---|
committer | Andrew den Exter <andrew.den-exter@nokia.com> | 2010-02-17 01:39:20 (GMT) |
commit | 1f93babe307efa37f0ca93c235ae1b616f303ee4 (patch) | |
tree | 66cddf38eb4e54d1203549c099102fae59758090 /tests/auto/qmediaplayer | |
parent | de18d264f1ed0cde99fcc0482c55e2999497ce7a (diff) | |
download | Qt-1f93babe307efa37f0ca93c235ae1b616f303ee4.zip Qt-1f93babe307efa37f0ca93c235ae1b616f303ee4.tar.gz Qt-1f93babe307efa37f0ca93c235ae1b616f303ee4.tar.bz2 |
Make QMediaPlayer test compile.
Test changes weren't ported with the rest of the changes for
isAudioAvailable().
Diffstat (limited to 'tests/auto/qmediaplayer')
-rw-r--r-- | tests/auto/qmediaplayer/tst_qmediaplayer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/qmediaplayer/tst_qmediaplayer.cpp b/tests/auto/qmediaplayer/tst_qmediaplayer.cpp index a3cba3f..6fac409 100644 --- a/tests/auto/qmediaplayer/tst_qmediaplayer.cpp +++ b/tests/auto/qmediaplayer/tst_qmediaplayer.cpp @@ -96,6 +96,7 @@ public: int bufferStatus() const { return _bufferStatus; } + bool isAudioAvailable() const { return _audioAvailable; } bool isVideoAvailable() const { return _videoAvailable; } bool isSeekable() const { return _isSeekable; } @@ -131,6 +132,7 @@ public: int _volume; bool _muted; int _bufferStatus; + bool _audioAvailable; bool _videoAvailable; bool _isSeekable; QPair<qint64, qint64> _seekRange; |