summaryrefslogtreecommitdiffstats
path: root/src/kchmkeyeventfilter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kchmkeyeventfilter.h')
-rw-r--r--src/kchmkeyeventfilter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kchmkeyeventfilter.h b/src/kchmkeyeventfilter.h
index 7375293..1fd70d6 100644
--- a/src/kchmkeyeventfilter.h
+++ b/src/kchmkeyeventfilter.h
@@ -22,14 +22,14 @@
#ifndef INCLUDE_KCHMKEYEVENTFILTER_H
#define INCLUDE_KCHMKEYEVENTFILTER_H
-#include <qobject.h>
+#include <tqobject.h>
/*!*
* This class must be installed as a global event handler. Its responsibility
* is to intercept keyboard events, and store the Shift and Ctrl keys state information.
- * Unfortunately it seems to be the only way to do it in Qt.
+ * Unfortunately it seems to be the only way to do it in TQt.
*/
-class KCHMKeyEventFilter : public QObject
+class KCHMKeyEventFilter : public TQObject
{
public:
KCHMKeyEventFilter();
@@ -38,7 +38,7 @@ class KCHMKeyEventFilter : public QObject
bool isCtrlPressed() const { return m_ctrlPressed; }
private:
- bool eventFilter( QObject *, QEvent *e );
+ bool eventFilter( TQObject *, TQEvent *e );
bool m_shiftPressed;
bool m_ctrlPressed;