summaryrefslogtreecommitdiff
path: root/noncore/styles/theme/plugin.cpp
Side-by-side diff
Diffstat (limited to 'noncore/styles/theme/plugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/theme/plugin.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/styles/theme/plugin.cpp b/noncore/styles/theme/plugin.cpp
new file mode 100644
index 0000000..b334357
--- a/dev/null
+++ b/noncore/styles/theme/plugin.cpp
@@ -0,0 +1,19 @@
+//#include <klocale.h>
+#include "othemestyle.h"
+
+extern "C"
+{
+ QStyle * allocate() {
+ return new OThemeStyle ( "" );
+ }
+ int minor_version() {
+ return 0;
+ }
+ int major_version() {
+ return 1;
+ }
+ const char * description() {
+ return ( "Theme Style" );
+ }
+}
+