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.
30 lines
386 B
30 lines
386 B
15 years ago
|
#include "klegacystyle.h"
|
||
|
#include <klocale.h>
|
||
|
|
||
|
extern "C" {
|
||
|
KStyle* allocate();
|
||
|
int minor_version();
|
||
|
int major_version();
|
||
|
const char *description();
|
||
|
}
|
||
|
|
||
|
KStyle* allocate()
|
||
|
{
|
||
|
return(new KLegacyStyle());
|
||
|
}
|
||
|
|
||
|
int minor_version()
|
||
|
{
|
||
|
return(0);
|
||
|
}
|
||
|
|
||
|
int major_version()
|
||
|
{
|
||
|
return(1);
|
||
|
}
|
||
|
|
||
|
const char *description()
|
||
|
{
|
||
|
return(i18n("KDE LegacyStyle plugin").utf8());
|
||
|
}
|