blob: a146de2c31bd5cdbda0bb24511fe844428901164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#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());
}
|