diff options
author | Justin McPherson <justin.mcpherson@nokia.com> | 2010-02-17 01:48:51 (GMT) |
---|---|---|
committer | Justin McPherson <justin.mcpherson@nokia.com> | 2010-02-17 01:48:51 (GMT) |
commit | efb58e8a0b164747becbac01ec742c2b4a0459ac (patch) | |
tree | 367fc667515c66111597072d3e8571ca1cd448c7 /tests/auto/qmediaplayer | |
parent | 08815ab306eb61d4a6abdfce0fe3ea9d50d46212 (diff) | |
parent | 1f93babe307efa37f0ca93c235ae1b616f303ee4 (diff) | |
download | Qt-efb58e8a0b164747becbac01ec742c2b4a0459ac.zip Qt-efb58e8a0b164747becbac01ec742c2b4a0459ac.tar.gz Qt-efb58e8a0b164747becbac01ec742c2b4a0459ac.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-multimedia-team
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 7f3cb3a..1775ec6 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; |