diff options
Diffstat (limited to 'client/config/deKoratorconfig.cpp')
-rw-r--r-- | client/config/deKoratorconfig.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/client/config/deKoratorconfig.cpp b/client/config/deKoratorconfig.cpp index db3d638..1904a9a 100644 --- a/client/config/deKoratorconfig.cpp +++ b/client/config/deKoratorconfig.cpp @@ -31,6 +31,10 @@ // Boston, MA 02110-1301, USA. /////////////////////////////////////////////////////////////////////// +#if defined(HAVE_CONFIG_H) +# include "config.h" +#endif + #include <tdeconfig.h> #include <tdelocale.h> #include <tdeglobal.h> @@ -61,9 +65,8 @@ DeKoratorConfig::DeKoratorConfig( TDEConfig* config, TQWidget* parent ) { // create the configuration object config_ = new TDEConfig( "twindeKoratorrc" ); - TDEGlobal::locale() ->insertCatalogue( "twin_deKorator_config" ); - - + TDEGlobal::locale()->insertCatalogue("twin_clients"); + TDEGlobal::locale()->insertCatalogue("twin_deKorator"); // create and show the configuration dialog dialog_ = new ConfigDialog( parent ); @@ -455,7 +458,7 @@ void DeKoratorConfig::setTheme() extern "C" { - TQObject * allocate_config( TDEConfig * config, TQWidget * parent ) + KDE_EXPORT TQObject * allocate_config( TDEConfig * config, TQWidget * parent ) { return ( new DeKoratorConfig( config, parent ) ); } |