diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-17 05:58:34 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-17 05:58:34 +0000 |
| commit | 02a97be8fe21c06466e03656bedcffb0bda520a7 (patch) | |
| tree | 5ac430013c863d40aba0ac4f5cbd848c7367f287 /src/plugins/Input/gme/decodergmefactory.cpp | |
| parent | 65f4aed5637a7b9a6ea81f27f36d029067565d21 (diff) | |
| download | qmmp-02a97be8fe21c06466e03656bedcffb0bda520a7.tar.gz qmmp-02a97be8fe21c06466e03656bedcffb0bda520a7.tar.bz2 qmmp-02a97be8fe21c06466e03656bedcffb0bda520a7.zip | |
gme: added feature to disable fadeout
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5167 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/gme/decodergmefactory.cpp')
| -rw-r--r-- | src/plugins/Input/gme/decodergmefactory.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/Input/gme/decodergmefactory.cpp b/src/plugins/Input/gme/decodergmefactory.cpp index e2ef81cdc..f9587ac14 100644 --- a/src/plugins/Input/gme/decodergmefactory.cpp +++ b/src/plugins/Input/gme/decodergmefactory.cpp @@ -20,6 +20,7 @@ #include <QtGui> #include <QRegExp> +#include "settingsdialog.h" #include "gmehelper.h" #include "decoder_gme.h" #include "decodergmefactory.h" @@ -52,7 +53,7 @@ const DecoderProperties DecoderGmeFactory::properties() const //properties.contentType = ; properties.shortName = "gme"; properties.hasAbout = true; - properties.hasSettings = false; + properties.hasSettings = true; properties.noInput = true; properties.protocols << "gme"; return properties; @@ -106,7 +107,8 @@ MetaDataModel* DecoderGmeFactory::createMetaDataModel(const QString &path, QObje void DecoderGmeFactory::showSettings(QWidget *parent) { - Q_UNUSED(parent); + SettingsDialog *d = new SettingsDialog(parent); + d->show(); } void DecoderGmeFactory::showAbout(QWidget *parent) |
