fix export's
svn path=/trunk/kdebase/kwin/; revision=375962
This commit is contained in:
parent
8b769daa8c
commit
1f509ffe24
6 changed files with 6 additions and 6 deletions
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 ) );
|
||||||
}
|
}
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue