diff options
Diffstat (limited to 'style/config/polyesterconf.cpp')
-rwxr-xr-x | style/config/polyesterconf.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/style/config/polyesterconf.cpp b/style/config/polyesterconf.cpp index 055e19b..3f365b6 100755 --- a/style/config/polyesterconf.cpp +++ b/style/config/polyesterconf.cpp @@ -36,8 +36,8 @@ DEALINGS IN THE SOFTWARE. #include <tqsettings.h> #include <tqcolor.h> #include <tqgroupbox.h> -#include <kglobal.h> -#include <klocale.h> +#include <tdeglobal.h> +#include <tdelocale.h> #include <kcolorbutton.h> #include <kdemacros.h> @@ -48,7 +48,7 @@ extern "C" { KDE_EXPORT TQWidget* allocate_kstyle_config(TQWidget* parent) { - KGlobal::locale()->insertCatalogue("polyester"); + TDEGlobal::locale()->insertCatalogue("polyester"); return new PolyesterStyleConfig(parent); } } @@ -59,7 +59,7 @@ PolyesterStyleConfig::PolyesterStyleConfig(TQWidget* parent): TQWidget(parent) //Should have no margins here, the dialog provides them TQVBoxLayout* layout = new TQVBoxLayout(this, 0, 0); dialog_ = new ConfigDialog(this); - KGlobal::locale()->insertCatalogue("kstyle_polyester_config"); + TDEGlobal::locale()->insertCatalogue("kstyle_polyester_config"); layout->addWidget(dialog_); |