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..7748e9ea7
--- /dev/null
+++ b/kcontrol/style/main.cpp
@@ -0,0 +1,16 @@
+#include <tdeglobal.h>
+#include <tdelocale.h>
+#include <kgenericfactory.h>
+
+#include "kcmstyle.h"
+
+extern "C" {
+ TDECModule *create_style(TQWidget *parent, const char *) {
+ return new KCMStyle(parent, "kcmstyle");
+ }
+}
+
+/*
+typedef KGenericFactory<KWidgetSettingsModule, TQWidget> GeneralFactory;
+K_EXPORT_COMPONENT_FACTORY( kcm_style, GeneralFactory )
+*/