diff options
Diffstat (limited to 'kstyles/web/plugin.cpp')
-rw-r--r-- | kstyles/web/plugin.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/kstyles/web/plugin.cpp b/kstyles/web/plugin.cpp new file mode 100644 index 000000000..c22bb08fa --- /dev/null +++ b/kstyles/web/plugin.cpp @@ -0,0 +1,11 @@ +#include <klocale.h> +#include "webstyle.h" + +extern "C" +{ + KStyle * allocate() { return new WebStyle; } + int minor_version() { return 0; } + int major_version() { return 1; } + const char * description() { return(i18n("Web style plugin").utf8()); } +} + |