aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-05-02 11:45:33 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-05-02 11:45:33 +0000
commit025cf02201e8dbfd7f4e07b473393dfa17b927fd (patch)
tree862114d46449de2f12dc789922fdf7191a0e9d96 /src/plugins
parentee5abc61159a81f52f0f3d1fcd2f1fbc13f3b4a2 (diff)
downloadqmmp-025cf02201e8dbfd7f4e07b473393dfa17b927fd.tar.gz
qmmp-025cf02201e8dbfd7f4e07b473393dfa17b927fd.tar.bz2
qmmp-025cf02201e8dbfd7f4e07b473393dfa17b927fd.zip
removed unused code
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7945 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/General/statusicon/statusicon.cpp2
-rw-r--r--src/plugins/Ui/qsui/mainwindow.cpp2
-rw-r--r--src/plugins/Ui/skinned/mainwindow.cpp2
-rw-r--r--src/plugins/Ui/skinned/textscroller.cpp2
-rw-r--r--src/plugins/Visual/projectm/projectmwidget.cpp2
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();
}