diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-08-09 13:10:56 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-08-09 13:10:56 +0000 |
| commit | 8151ed54258ec0bfe34bac093b4cc808a7ed5f3a (patch) | |
| tree | 8721c94235b3d70444ae793ff9a24e02d6be1614 /src/plugins/General/mpris | |
| parent | 778363dcb151b6088446115ea414ca3527aff714 (diff) | |
| download | qmmp-8151ed54258ec0bfe34bac093b4cc808a7ed5f3a.tar.gz qmmp-8151ed54258ec0bfe34bac093b4cc808a7ed5f3a.tar.bz2 qmmp-8151ed54258ec0bfe34bac093b4cc808a7ed5f3a.zip | |
mpris: fixed issue with untracked property
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7370 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/mpris')
| -rw-r--r-- | src/plugins/General/mpris/mpris2/player2object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/General/mpris/mpris2/player2object.cpp b/src/plugins/General/mpris/mpris2/player2object.cpp index aa754d942..21d51c633 100644 --- a/src/plugins/General/mpris/mpris2/player2object.cpp +++ b/src/plugins/General/mpris/mpris2/player2object.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010-2016 by Ilya Kotov * + * Copyright (C) 2010-2017 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -45,10 +45,10 @@ Player2Object::Player2Object(QObject *parent) : QDBusAbstractAdaptor(parent) connect(m_core, SIGNAL(volumeChanged(int,int)), SLOT(emitPropertiesChanged())); connect(m_core, SIGNAL(elapsedChanged(qint64)), SLOT(checkSeeking(qint64))); connect(m_ui_settings, SIGNAL(repeatableListChanged(bool)), SLOT(emitPropertiesChanged())); + connect(m_ui_settings, SIGNAL(repeatableTrackChanged(bool)), SLOT(emitPropertiesChanged())); connect(m_ui_settings, SIGNAL(shuffleChanged(bool)), SLOT(emitPropertiesChanged())); connect(m_pl_manager, SIGNAL(currentPlayListChanged(PlayListModel*,PlayListModel*)), SLOT(setModel(PlayListModel*,PlayListModel*))); - connect(m_ui_settings, SIGNAL(repeatableListChanged(bool)), SLOT(emitPropertiesChanged())); setModel(m_pl_manager->currentPlayList(), 0); updateId(); syncProperties(); |
