diff options
author | Arno <arno@disconnect.de> | 2017-03-06 06:16:52 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2017-03-06 06:16:52 +0100 |
commit | b7421f4bc4244240229af06c7baa6810d2882feb (patch) | |
tree | e5ebc6f9859cace448f08a637fa93015c33ce4e8 /playerwidget.cpp | |
parent | 4a571bccfa7119eb81f0e634e7527e18a025c043 (diff) | |
download | BeetPlayer-b7421f4bc4244240229af06c7baa6810d2882feb.tar.gz BeetPlayer-b7421f4bc4244240229af06c7baa6810d2882feb.tar.bz2 BeetPlayer-b7421f4bc4244240229af06c7baa6810d2882feb.zip |
Remove obsolete connection to setDuration(qint64)
Diffstat (limited to 'playerwidget.cpp')
-rw-r--r-- | playerwidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/playerwidget.cpp b/playerwidget.cpp index 62ab6e1..da2f6bf 100644 --- a/playerwidget.cpp +++ b/playerwidget.cpp @@ -39,7 +39,6 @@ void PlayerWidget::setupGui(){ //the Player mPlayer = new QMediaPlayer(this); connect(mPlayer, SIGNAL(positionChanged(qint64)), this, SLOT(setPosition(qint64))); - connect(mPlayer, SIGNAL(durationChanged(qint64)), this, SLOT(setDuration(qint64))); connect(mPlayer, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus)), this, SLOT(continuePlaying(QMediaPlayer::MediaStatus))); //THE view |