diff --git a/clients/b2/config/config.cpp b/clients/b2/config/config.cpp index 317def1822..d16a903070 100644 --- a/clients/b2/config/config.cpp +++ b/clients/b2/config/config.cpp @@ -15,7 +15,7 @@ extern "C" { - QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent ) + KDE_EXPORT QObject* allocate_config( KConfig* conf, QWidget* parent ) { return(new B2Config(conf, parent)); } diff --git a/clients/default/config/config.cpp b/clients/default/config/config.cpp index 8c87ae42ad..2ad494fa91 100644 --- a/clients/default/config/config.cpp +++ b/clients/default/config/config.cpp @@ -17,7 +17,7 @@ extern "C" { - QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent ) + KDE_EXPORT QObject* allocate_config( KConfig* conf, QWidget* parent ) { return(new KDEDefaultConfig(conf, parent)); } diff --git a/clients/keramik/config/config.cpp b/clients/keramik/config/config.cpp index 44afabbaf7..7173896e8a 100644 --- a/clients/keramik/config/config.cpp +++ b/clients/keramik/config/config.cpp @@ -33,7 +33,7 @@ extern "C" { - QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent ) + KDE_EXPORT QObject* allocate_config( KConfig* conf, QWidget* parent ) { return ( new KeramikConfig( conf, parent ) ); } diff --git a/clients/modernsystem/config/config.cpp b/clients/modernsystem/config/config.cpp index f5d0a42bb4..542494d28f 100644 --- a/clients/modernsystem/config/config.cpp +++ b/clients/modernsystem/config/config.cpp @@ -12,7 +12,7 @@ extern "C" { - QObject* KDE_EXPORT allocate_config(KConfig* conf, QWidget* parent) + KDE_EXPORT QObject* allocate_config(KConfig* conf, QWidget* parent) { return(new ModernSysConfig(conf, parent)); } diff --git a/clients/plastik/config/config.cpp b/clients/plastik/config/config.cpp index 43f7869308..092fe749ed 100644 --- a/clients/plastik/config/config.cpp +++ b/clients/plastik/config/config.cpp @@ -110,7 +110,7 @@ void PlastikConfig::defaults() extern "C" { - QObject* KDE_EXPORT allocate_config(KConfig* config, QWidget* parent) { + KDE_EXPORT QObject* allocate_config(KConfig* config, QWidget* parent) { return (new PlastikConfig(config, parent)); } } diff --git a/clients/quartz/config/config.cpp b/clients/quartz/config/config.cpp index 17960b7b61..8bfd5709e8 100644 --- a/clients/quartz/config/config.cpp +++ b/clients/quartz/config/config.cpp @@ -15,7 +15,7 @@ extern "C" { - QObject* KDE_EXPORT allocate_config( KConfig* conf, QWidget* parent ) + KDE_EXPORT QObject* allocate_config( KConfig* conf, QWidget* parent ) { return(new QuartzConfig(conf, parent)); }