diff options
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/General/statusicon/statusicon.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Ui/qsui/mainwindow.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Ui/skinned/mainwindow.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Ui/skinned/textscroller.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Visual/projectm/projectmwidget.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/General/statusicon/statusicon.cpp b/src/plugins/General/statusicon/statusicon.cpp index 69ed86387..cddc0ab04 100644 --- a/src/plugins/General/statusicon/statusicon.cpp +++ b/src/plugins/General/statusicon/statusicon.cpp @@ -77,7 +77,7 @@ StatusIcon::StatusIcon(QObject *parent) : QObject(parent) m_menu->addAction(tr("Exit"), UiHelper::instance(), SLOT(exit())); m_tray->setContextMenu(m_menu); m_tray->show(); - connect (m_core, SIGNAL(metaDataChanged ()), SLOT(showMetaData())); + connect (m_core, SIGNAL(trackInfoChanged ()), SLOT(showMetaData())); connect (m_core, SIGNAL(stateChanged (Qmmp::State)), SLOT(setState(Qmmp::State))); setState(m_core->state()); //update state if (m_core->state() == Qmmp::Playing) //show test message diff --git a/src/plugins/Ui/qsui/mainwindow.cpp b/src/plugins/Ui/qsui/mainwindow.cpp index 7fb0db61b..fe93a2976 100644 --- a/src/plugins/Ui/qsui/mainwindow.cpp +++ b/src/plugins/Ui/qsui/mainwindow.cpp @@ -87,7 +87,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(showState(Qmmp::State))); connect(m_core, SIGNAL(bitrateChanged(int)), SLOT(updateStatus())); connect(m_core, SIGNAL(bufferingProgress(int)), SLOT(showBuffering(int))); - connect(m_core, SIGNAL(metaDataChanged()), SLOT(showMetaData())); + connect(m_core, SIGNAL(trackInfoChanged()), SLOT(showMetaData())); //keyboard manager m_key_manager = new KeyboardManager(this); //create tabs diff --git a/src/plugins/Ui/skinned/mainwindow.cpp b/src/plugins/Ui/skinned/mainwindow.cpp index 8229f8a53..c860f577d 100644 --- a/src/plugins/Ui/skinned/mainwindow.cpp +++ b/src/plugins/Ui/skinned/mainwindow.cpp @@ -126,7 +126,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(showState(Qmmp::State))); connect(m_core, SIGNAL(elapsedChanged(qint64)),m_playlist, SLOT(setTime(qint64))); - connect(m_core, SIGNAL(metaDataChanged()),SLOT(showMetaData())); + connect(m_core, SIGNAL(trackInfoChanged()),SLOT(showMetaData())); connect(m_uiHelper, SIGNAL(toggleVisibilityCalled()), SLOT(toggleVisibility())); connect(m_uiHelper, SIGNAL(showMainWindowCalled()), SLOT(showAndRaise())); diff --git a/src/plugins/Ui/skinned/textscroller.cpp b/src/plugins/Ui/skinned/textscroller.cpp index e6b8cfa7d..078455588 100644 --- a/src/plugins/Ui/skinned/textscroller.cpp +++ b/src/plugins/Ui/skinned/textscroller.cpp @@ -62,7 +62,7 @@ TextScroller::TextScroller (QWidget *parent) : QWidget (parent) connect(m_timer, SIGNAL (timeout()), SLOT (addOffset())); connect(m_skin, SIGNAL(skinChanged()), SLOT(updateSkin())); connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(processState(Qmmp::State))); - connect(m_core, SIGNAL(metaDataChanged()), SLOT(processMetaData())); + connect(m_core, SIGNAL(trackInfoChanged()), SLOT(processMetaData())); connect(MediaPlayer::instance(), SIGNAL(playbackFinished()), SLOT(clearText())); updateSkin(); } diff --git a/src/plugins/Visual/projectm/projectmwidget.cpp b/src/plugins/Visual/projectm/projectmwidget.cpp index 7f7fcc447..95c2ea61d 100644 --- a/src/plugins/Visual/projectm/projectmwidget.cpp +++ b/src/plugins/Visual/projectm/projectmwidget.cpp @@ -44,7 +44,7 @@ ProjectMWidget::ProjectMWidget(QListWidget *listWidget, QWidget *parent) m_listWidget = listWidget; m_projectM = 0; m_menu = new QMenu(this); - connect(SoundCore::instance(), SIGNAL(metaDataChanged()), SLOT(updateTitle())); + connect(SoundCore::instance(), SIGNAL(trackInfoChanged()), SLOT(updateTitle())); createActions(); } |
