summaryrefslogtreecommitdiffstats
path: root/kstyles/klegacy/plugin.cpp
blob: 558b54e73f968ca4cf9172792e5f02eb113b3910 (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 <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());
}