fix export's

svn path=/trunk/kdebase/kwin/; revision=375962
This commit is contained in:
Dirk Mueller 2005-01-06 22:37:53 +00:00
parent 8b769daa8c
commit 1f509ffe24
6 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@
extern "C" extern "C"
{ {
QObject* allocate_config( KConfig* conf, QWidget* parent ) QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent )
{ {
return(new B2Config(conf, parent)); return(new B2Config(conf, parent));
} }

View file

@ -17,7 +17,7 @@
extern "C" extern "C"
{ {
QObject* allocate_config( KConfig* conf, QWidget* parent ) QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent )
{ {
return(new KDEDefaultConfig(conf, parent)); return(new KDEDefaultConfig(conf, parent));
} }

View file

@ -33,7 +33,7 @@
extern "C" extern "C"
{ {
QObject* allocate_config( KConfig* conf, QWidget* parent ) QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent )
{ {
return ( new KeramikConfig( conf, parent ) ); return ( new KeramikConfig( conf, parent ) );
} }

View file

@ -12,7 +12,7 @@
extern "C" extern "C"
{ {
QObject* allocate_config(KConfig* conf, QWidget* parent) QObject* KDE_EXPORT allocate_config(KConfig* conf, QWidget* parent)
{ {
return(new ModernSysConfig(conf, parent)); return(new ModernSysConfig(conf, parent));
} }

View file

@ -110,7 +110,7 @@ void PlastikConfig::defaults()
extern "C" extern "C"
{ {
QObject* allocate_config(KConfig* config, QWidget* parent) { QObject* KDE_EXPORT allocate_config(KConfig* config, QWidget* parent) {
return (new PlastikConfig(config, parent)); return (new PlastikConfig(config, parent));
} }
} }

View file

@ -15,7 +15,7 @@
extern "C" extern "C"
{ {
QObject* allocate_config( KConfig* conf, QWidget* parent ) QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent )
{ {
return(new QuartzConfig(conf, parent)); return(new QuartzConfig(conf, parent));
} }