summaryrefslogtreecommitdiffstats
path: root/kpacman/keys.h
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-08-17 20:03:11 +0200
committergregory guy <gregory-tde@laposte.net>2020-08-17 20:03:11 +0200
commit503fddb48f2229ecc6ed6930a99c4d740ff979e5 (patch)
tree81206d9572927fd636b43a00005808cec6c0ce3e /kpacman/keys.h
parente0031ac458d4f414ae583a709d48c4cb0f14b09e (diff)
downloadtdepacman-503fddb48f2229ecc6ed6930a99c4d740ff979e5.tar.gz
tdepacman-503fddb48f2229ecc6ed6930a99c4d740ff979e5.zip
Second step, convert to tqt3 libraries.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/keys.h')
-rw-r--r--kpacman/keys.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kpacman/keys.h b/kpacman/keys.h
index 955afea..ca27d99 100644
--- a/kpacman/keys.h
+++ b/kpacman/keys.h
@@ -7,17 +7,17 @@
#include <kapp.h>
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qstring.h>
+#include <ntqdialog.h>
+#include <ntqlabel.h>
+#include <ntqstring.h>
#include <kaccel.h>
-class Keys : public QDialog
+class Keys : public TQDialog
{
Q_OBJECT
public:
- Keys( QWidget *parent=0, const char *name=0 );
+ Keys( TQWidget *parent=0, const char *name=0 );
private slots:
void butRight();
@@ -27,19 +27,19 @@ private slots:
void getKey(int);
void defaults();
- void focusIn(QLabel *);
- void focusOut(QLabel *);
+ void focusIn(TQLabel *);
+ void focusOut(TQLabel *);
void ok();
protected:
- void keyPressEvent( QKeyEvent * );
+ void keyPressEvent( TQKeyEvent * );
private:
void init();
- QLabel *labels[4];
- QLabel *lab;
+ TQLabel *labels[4];
+ TQLabel *lab;
};
#endif // KEYS_H