summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qplatformthemeplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel/qplatformthemeplugin.h')
-rw-r--r--src/gui/kernel/qplatformthemeplugin.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/gui/kernel/qplatformthemeplugin.h b/src/gui/kernel/qplatformthemeplugin.h
index 970eb36f07..cc7bd768c9 100644
--- a/src/gui/kernel/qplatformthemeplugin.h
+++ b/src/gui/kernel/qplatformthemeplugin.h
@@ -58,27 +58,17 @@ QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
-
class QPlatformTheme;
-struct QPlatformThemeFactoryInterface : public QFactoryInterface
-{
- virtual QPlatformTheme *create(const QString &key, const QStringList &paramList) = 0;
-};
-
#define QPlatformThemeFactoryInterface_iid "org.qt-project.Qt.QPlatformThemeFactoryInterface"
-Q_DECLARE_INTERFACE(QPlatformThemeFactoryInterface, QPlatformThemeFactoryInterface_iid)
-
-class Q_GUI_EXPORT QPlatformThemePlugin : public QObject, public QPlatformThemeFactoryInterface
+class Q_GUI_EXPORT QPlatformThemePlugin : public QObject
{
Q_OBJECT
- Q_INTERFACES(QPlatformThemeFactoryInterface:QFactoryInterface)
public:
explicit QPlatformThemePlugin(QObject *parent = 0);
~QPlatformThemePlugin();
- virtual QStringList keys() const = 0;
virtual QPlatformTheme *create(const QString &key, const QStringList &paramList) = 0;
};