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.
|
|
|
#include "plugin_%{APPNAMELC}_impl.h"
|
|
|
|
#include <kglobal.h>
|
|
#include <klocale.h>
|
|
|
|
extern "C"
|
|
{
|
|
Plugin *create_plugin()
|
|
{
|
|
KGlobal::locale()->insertCatalogue("%{APPNAMELC}");
|
|
return new %{APPNAME}UI;
|
|
}
|
|
}
|
|
|