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.
tdelibs/kstyles/klegacy/plugin.cpp

30 line
392 B

#include "klegacystyle.h"
#include <tdelocale.h>
extern "C" {
TDEStyle* allocate();
int minor_version();
int major_version();
const char *description();
}
TDEStyle* allocate()
{
return(new KLegacyStyle());
}
int minor_version()
{
return(0);
}
int major_version()
{
return(1);
}
const char *description()
{
return(i18n("KDE LegacyStyle plugin").utf8());
}