blob: 230671397c2c6e23331bd8d597f9c2877f02c3d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "plugin_%{APPNAMELC}_impl.h"
#include <kglobal.h>
#include <klocale.h>
extern "C"
{
Plugin *create_plugin()
{
KGlobal::locale()->insertCatalogue("%{APPNAMELC}");
return new %{APPNAME}UI;
}
}
|