summaryrefslogtreecommitdiffstats
path: root/kpacman/keys.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpacman/keys.cpp')
-rw-r--r--kpacman/keys.cpp10
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() )