blob: 252cee0fd57b4bbafd5e99168e3bd97158e27bcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <kglobal.h>
#include <klocale.h>
#include <kgenericfactory.h>
#include "kcmstyle.h"
extern "C" {
KCModule *create_style(TQWidget *parent, const char *) {
return new KCMStyle(parent, "kcmstyle");
}
}
/*
typedef KGenericFactory<KWidgetSettingsModule, TQWidget> GeneralFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_style, GeneralFactory )
*/
|