blob: 5436855027fc75e4172c04672f9c4d36e41e96b3 (
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(QWidget *parent, const char *) {
return new KCMStyle(parent, "kcmstyle");
}
}
/*
typedef KGenericFactory<KWidgetSettingsModule, QWidget> GeneralFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_style, GeneralFactory )
*/
|