summaryrefslogtreecommitdiffstats
path: root/kcontrol/style/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/style/main.cpp')
-rw-r--r--kcontrol/style/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/kcontrol/style/main.cpp b/kcontrol/style/main.cpp
new file mode 100644
index 000000000..543685502
--- /dev/null
+++ b/kcontrol/style/main.cpp
@@ -0,0 +1,16 @@
+#include <kglobal.h>
+#include <klocale.h>
+#include <kgenericfactory.h>
+
+#include "kcmstyle.h"
+
+extern "C" {
+ KCModule *create_style(QWidget *parent, const char *) {
+ return new KCMStyle(parent, "kcmstyle");
+ }
+}
+
+/*
+typedef KGenericFactory<KWidgetSettingsModule, QWidget> GeneralFactory;
+K_EXPORT_COMPONENT_FACTORY( kcm_style, GeneralFactory )
+*/