diff options
Diffstat (limited to 'kregexpeditor/limitedcharlineedit.h')
-rw-r--r-- | kregexpeditor/limitedcharlineedit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kregexpeditor/limitedcharlineedit.h b/kregexpeditor/limitedcharlineedit.h index d4654c6..13026cc 100644 --- a/kregexpeditor/limitedcharlineedit.h +++ b/kregexpeditor/limitedcharlineedit.h @@ -18,10 +18,10 @@ #ifndef __limitedcharlineedit #define __limitedcharlineedit -#include <qlineedit.h> +#include <tqlineedit.h> /** - QLineEdit which only accepts a prespecified number of character. + TQLineEdit which only accepts a prespecified number of character. @internal */ class LimitedCharLineEdit :public QLineEdit @@ -29,10 +29,10 @@ class LimitedCharLineEdit :public QLineEdit public: enum Mode { NORMAL = 0, HEX = 1, OCT = 2 }; - LimitedCharLineEdit(Mode mode, QWidget* parent, const char *name = 0); + LimitedCharLineEdit(Mode mode, TQWidget* parent, const char *name = 0); protected: - virtual void keyPressEvent ( QKeyEvent * ); + virtual void keyPressEvent ( TQKeyEvent * ); private: Mode _mode; |