diff options
author | Mavridis Philippe <[email protected]> | 2024-03-10 19:57:12 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2024-03-10 20:04:10 +0200 |
commit | 8dbc6179f8b3bd630e3edc6d1e2a01becf5e065b (patch) | |
tree | bcb2aed9636358b58e0202e941d372da808c6442 /style/config | |
parent | db5c38267db65110beb4ad895a1fe38b42d8001f (diff) | |
download | tde-style-polyester-8dbc6179f8b3bd630e3edc6d1e2a01becf5e065b.tar.gz tde-style-polyester-8dbc6179f8b3bd630e3edc6d1e2a01becf5e065b.zip |
Port to TDE
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'style/config')
-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_); |