From 24b5ddfcbfe13a6d51365004aa276ffb269fac62 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Wed, 20 Feb 2008 19:00:29 +0000 Subject: improved general plugin configuration git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@252 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/dbuscontrol/dbuscontrolfactory.cpp | 6 ++++-- src/plugins/General/dbuscontrol/dbuscontrolfactory.h | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/plugins/General/dbuscontrol') 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); -- cgit v1.2.3-13-gbd6f