blob: a98ab7a6c282da3c184ce766e5a125d7e80d20d0 (
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()
{
TDEGlobal::locale()->insertCatalogue("%{APPNAMELC}");
return new %{APPNAME}UI;
}
}
|