From d0e1f9e4e1e44dbe3372a6cdb621bf0ee9baa668 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 13 Sep 2011 15:00:51 +0000 Subject: fixed regression git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2350 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Ui/skinned/display.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/plugins/Ui/skinned/display.cpp') diff --git a/src/plugins/Ui/skinned/display.cpp b/src/plugins/Ui/skinned/display.cpp index 265736788..1dec4066e 100644 --- a/src/plugins/Ui/skinned/display.cpp +++ b/src/plugins/Ui/skinned/display.cpp @@ -125,8 +125,8 @@ MainDisplay::MainDisplay (QWidget *parent) connect(m_core, SIGNAL(volumeChanged(int,int)), SLOT(setVolume(int, int))); connect(m_core, SIGNAL(elapsedChanged(qint64)),m_titlebar, SLOT(setTime(qint64))); PlayListManager *pl_manager = MediaPlayer::instance()->playListManager(); - connect(pl_manager, SIGNAL(repeatableListChanged(bool)), m_repeatButton, SLOT(setON(bool))); - connect(pl_manager, SIGNAL(shuffleChanged(bool)), m_shuffleButton, SLOT(setON(bool))); + connect(pl_manager, SIGNAL(repeatableListChanged(bool)), m_repeatButton, SLOT(setChecked(bool))); + connect(pl_manager, SIGNAL(shuffleChanged(bool)), m_shuffleButton, SLOT(setChecked(bool))); updatePositions(); updateMask(); } @@ -255,7 +255,7 @@ void MainDisplay::setEQ (QWidget* w) connect (ACTION(ActionManager::SHOW_EQUALIZER), SIGNAL(triggered(bool)), m_equlizer, SLOT (setVisible (bool))); connect (ACTION(ActionManager::SHOW_EQUALIZER), SIGNAL(triggered(bool)), - m_eqButton, SLOT (setON (bool))); + m_eqButton, SLOT (setChecked (bool))); connect (m_eqButton, SIGNAL(clicked(bool)), ACTION(ActionManager::SHOW_EQUALIZER), SLOT(setChecked (bool))); @@ -272,7 +272,7 @@ void MainDisplay::setPL (QWidget* w) connect (ACTION(ActionManager::SHOW_PLAYLIST), SIGNAL(triggered(bool)), m_playlist, SLOT (setVisible (bool))); connect (ACTION(ActionManager::SHOW_PLAYLIST), SIGNAL(triggered(bool)), - m_plButton, SLOT (setON (bool))); + m_plButton, SLOT (setChecked (bool))); connect (m_plButton, SIGNAL(clicked(bool)), ACTION(ActionManager::SHOW_PLAYLIST), SLOT(setChecked (bool))); -- cgit v1.2.3-13-gbd6f