summaryrefslogtreecommitdiffstats
path: root/kcontrol/style/main.cpp
blob: 334229f4ef1fd93b20b378d957185c36dd85d9fa (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" {
    TDECModule *create_style(TQWidget *parent, const char *) {
      return new KCMStyle(parent, "kcmstyle");
    }
}

/*
typedef KGenericFactory<KWidgetSettingsModule, TQWidget> GeneralFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_style, GeneralFactory )
*/