You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
225 B
16 lines
225 B
15 years ago
|
|
||
|
#include "plugin_%{APPNAMELC}_impl.h"
|
||
|
|
||
|
#include <kglobal.h>
|
||
|
#include <klocale.h>
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
Plugin *create_plugin()
|
||
|
{
|
||
|
KGlobal::locale()->insertCatalogue("%{APPNAMELC}");
|
||
|
return new %{APPNAME}UI;
|
||
|
}
|
||
|
}
|
||
|
|