diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-02-20 19:00:29 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-02-20 19:00:29 +0000 |
| commit | 24b5ddfcbfe13a6d51365004aa276ffb269fac62 (patch) | |
| tree | c01c732d6100b4593cac185e164039a44ace4f62 /src/plugins/General/dbuscontrol | |
| parent | f7922b3fd6e83b04f07f036e56023017bc5bacfa (diff) | |
| download | qmmp-24b5ddfcbfe13a6d51365004aa276ffb269fac62.tar.gz qmmp-24b5ddfcbfe13a6d51365004aa276ffb269fac62.tar.bz2 qmmp-24b5ddfcbfe13a6d51365004aa276ffb269fac62.zip | |
improved general plugin configuration
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@252 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/dbuscontrol')
| -rw-r--r-- | src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp | 6 | ||||
| -rw-r--r-- | src/plugins/General/dbuscontrol/dbuscontrolfactory.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp b/src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp index 922962c67..567614673 100644 --- a/src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp +++ b/src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp @@ -37,8 +37,10 @@ General *DBUSControlFactory::create(QObject *parent) return new DBUSControl(parent); } -void DBUSControlFactory::showSettings(QWidget *) -{} +QDialog *DBUSControlFactory::createConfigDialog(QWidget *parent) +{ + return 0; +} void DBUSControlFactory::showAbout(QWidget *parent) { diff --git a/src/plugins/General/dbuscontrol/dbuscontrolfactory.h b/src/plugins/General/dbuscontrol/dbuscontrolfactory.h index 98121edec..af06b30bc 100644 --- a/src/plugins/General/dbuscontrol/dbuscontrolfactory.h +++ b/src/plugins/General/dbuscontrol/dbuscontrolfactory.h @@ -36,7 +36,7 @@ Q_INTERFACES(GeneralFactory); public: const GeneralProperties properties() const; General *create(QObject *parent); - void showSettings(QWidget *parent); + QDialog *createConfigDialog(QWidget *parent); void showAbout(QWidget *parent); QTranslator *createTranslator(QObject *parent); |
