Fix a compiler warning.
Change-Id: Ie53ebaecc14a5bd2baa609b7cae6f0ee59aa0fd2 Reviewed-by: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
4f3294930a
commit
3d7dff4f61
@@ -64,9 +64,9 @@ QSoundEffectPrivate::QSoundEffectPrivate(QObject* parent):
|
|||||||
QObject(parent),
|
QObject(parent),
|
||||||
m_loopCount(1),
|
m_loopCount(1),
|
||||||
m_runningCount(0),
|
m_runningCount(0),
|
||||||
m_player(0),
|
m_playing(false),
|
||||||
m_status(QSoundEffect::Null),
|
m_status(QSoundEffect::Null),
|
||||||
m_playing(false)
|
m_player(0)
|
||||||
{
|
{
|
||||||
m_player = new QMediaPlayer(this, QMediaPlayer::LowLatency);
|
m_player = new QMediaPlayer(this, QMediaPlayer::LowLatency);
|
||||||
connect(m_player, SIGNAL(stateChanged(QMediaPlayer::State)), SLOT(stateChanged(QMediaPlayer::State)));
|
connect(m_player, SIGNAL(stateChanged(QMediaPlayer::State)), SLOT(stateChanged(QMediaPlayer::State)));
|
||||||
|
|||||||
Reference in New Issue
Block a user