summaryrefslogtreecommitdiff
path: root/noncore/styles/theme/plugin.cpp
blob: b334357a53d5520486019675343a8843b4d1757c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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" );
	}
}