diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-01-18 07:14:42 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-01-18 07:14:42 +0000 |
| commit | 63223b02008d1979cb8b05ec2c7db903682b576c (patch) | |
| tree | 087ddcd957232a73cbb8d482f512ca587af9cac0 /src/plugins/Visual/projectm/projectmwidget.cpp | |
| parent | c60c6025069c3f9a4590a1742682564b61c2c1a1 (diff) | |
| download | qmmp-63223b02008d1979cb8b05ec2c7db903682b576c.tar.gz qmmp-63223b02008d1979cb8b05ec2c7db903682b576c.tar.bz2 qmmp-63223b02008d1979cb8b05ec2c7db903682b576c.zip | |
projectm: fixed build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6992 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Visual/projectm/projectmwidget.cpp')
| -rw-r--r-- | src/plugins/Visual/projectm/projectmwidget.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/Visual/projectm/projectmwidget.cpp b/src/plugins/Visual/projectm/projectmwidget.cpp index 8f0967b11..a9072db51 100644 --- a/src/plugins/Visual/projectm/projectmwidget.cpp +++ b/src/plugins/Visual/projectm/projectmwidget.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2015 by Ilya Kotov * + * Copyright (C) 2009-2017 by Ilya Kotov * * forkotov02@hotmail.ru * * * * Copyright (C) 2007 by projectM team * @@ -22,7 +22,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QTimer> #include <QDir> #include <QKeyEvent> #include <QMenu> @@ -43,8 +42,6 @@ ProjectMWidget::ProjectMWidget(QListWidget *listWidget, QWidget *parent) setMouseTracking(true); m_listWidget = listWidget; m_projectM = 0; - m_timer = new QTimer(this); - connect(m_timer, SIGNAL(timeout()),SLOT(updateGL())); m_menu = new QMenu(this); connect(SoundCore::instance(), SIGNAL(metaDataChanged()), SLOT(updateTitle())); #if QT_VERSION >= 0x040700 @@ -134,7 +131,6 @@ void ProjectMWidget::initializeGL() connect(m_listWidget, SIGNAL(currentRowChanged(int)), m_projectM, SLOT(selectPreset(int))); connect(m_projectM, SIGNAL(currentPresetChanged(int)), SLOT(setCurrentRow(int))); updateTitle(); - m_timer->start(0); } } |
