summaryrefslogtreecommitdiffstats
path: root/kcontrol/style/main.cpp
blob: 7748e9ea7a8c771a86282242587ecb405da6e055 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <tdeglobal.h>
#include <tdelocale.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 )
*/