blob: 6ab10ebd8994f116ef51e0a5f7e555f88b0f0aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <klocale.h>
#include "webstyle.h"
extern "C"
{
TDEStyle * allocate() { return new WebStyle; }
int minor_version() { return 0; }
int major_version() { return 1; }
const char * description() { return(i18n("Web style plugin").utf8()); }
}
|