diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:04:20 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:04:20 +0200 |
commit | 2e2a3c5923526e5f0baa0b4b85d32afec6f19805 (patch) | |
tree | 74b2b4ac39c666b8479b91796c57287a7401bed1 /kpacman/keys.cpp | |
parent | 503fddb48f2229ecc6ed6930a99c4d740ff979e5 (diff) | |
download | tdepacman-2e2a3c5923526e5f0baa0b4b85d32afec6f19805.tar.gz tdepacman-2e2a3c5923526e5f0baa0b4b85d32afec6f19805.zip |
third step, convert to tdelibs libraries.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/keys.cpp')
-rw-r--r-- | kpacman/keys.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpacman/keys.cpp b/kpacman/keys.cpp index 8dc5648..46b55d7 100644 --- a/kpacman/keys.cpp +++ b/kpacman/keys.cpp @@ -1,11 +1,11 @@ #include <kapp.h> -#include <kconfig.h> -#include <klocale.h> +#include <tdeconfig.h> +#include <tdelocale.h> #include <kstddirs.h> #include <keys.h> -#include <kaccel.h> +#include <tdeaccel.h> #include <ntqpushbt.h> #include <ntqlabel.h> #include <ntqframe.h> @@ -16,7 +16,7 @@ Keys::Keys( TQWidget *parent, const char *name) : TQDialog( parent, name, TRUE ) { - KStandardDirs *dirs = KGlobal::dirs(); + TDEStandardDirs *dirs = TDEGlobal::dirs(); TQPushButton *okButton = new TQPushButton(this); okButton->setText(i18n("Ok")); @@ -91,7 +91,7 @@ Keys::Keys( TQWidget *parent, const char *name) void Keys::keyPressEvent( TQKeyEvent *e ) { uint kCode = e->key() & ~(SHIFT | CTRL | ALT); - TQString string = KAccel::keyToString(kCode); + TQString string = TDEAccel::keyToString(kCode); if (lab != 0) { if ( string.isNull() ) |