diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-02-09 19:10:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-02-09 19:10:54 +0000 |
| commit | bc28f1332bbbf9bad49bbad6fd01ef03b4ab99b9 (patch) | |
| tree | 24dd1dc055212b1486b3cb27c888883e062888f7 /src/qmmpui/mediaplayer.cpp | |
| parent | 68759dc1fdf12840cd8ab137fa2bc0d07719d754 (diff) | |
| download | qmmp-bc28f1332bbbf9bad49bbad6fd01ef03b4ab99b9.tar.gz qmmp-bc28f1332bbbf9bad49bbad6fd01ef03b4ab99b9.tar.bz2 qmmp-bc28f1332bbbf9bad49bbad6fd01ef03b4ab99b9.zip | |
refactoring: add QmmpUiSettings class, removed deprecated code
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2588 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/mediaplayer.cpp')
| -rw-r--r-- | src/qmmpui/mediaplayer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qmmpui/mediaplayer.cpp b/src/qmmpui/mediaplayer.cpp index 97930191a..23fc01dc7 100644 --- a/src/qmmpui/mediaplayer.cpp +++ b/src/qmmpui/mediaplayer.cpp @@ -23,6 +23,7 @@ #include <QTranslator> #include <QLocale> #include "playlistitem.h" +#include "qmmpuisettings.h" #include "mediaplayer.h" #define MAX_ERRORS 4 @@ -45,6 +46,7 @@ MediaPlayer::MediaPlayer(QObject *parent) translator->load(QString(":/libqmmpui_") + locale); qApp->installTranslator(translator); m_core = new SoundCore(this); + m_settings = new QmmpUiSettings(this); m_pl_manager = new PlayListManager(this); connect(m_core, SIGNAL(nextTrackRequest()), SLOT(updateNextUrl())); connect(m_core, SIGNAL(finished()), SLOT(playNext())); |
