diff options
Diffstat (limited to 'kaddressbook/incsearchwidget.h')
-rw-r--r-- | kaddressbook/incsearchwidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/incsearchwidget.h b/kaddressbook/incsearchwidget.h index c4eb1936f..f1ef00f45 100644 --- a/kaddressbook/incsearchwidget.h +++ b/kaddressbook/incsearchwidget.h @@ -24,7 +24,7 @@ #ifndef INCSEARCHWIDGET_H #define INCSEARCHWIDGET_H -#include <qwidget.h> +#include <tqwidget.h> #include <kabc/field.h> @@ -37,7 +37,7 @@ class IncSearchWidget : public QWidget Q_OBJECT public: - IncSearchWidget( QWidget *parent, const char *name = 0 ); + IncSearchWidget( TQWidget *parent, const char *name = 0 ); ~IncSearchWidget(); KABC::Field::List currentFields() const; @@ -53,7 +53,7 @@ class IncSearchWidget : public QWidget widget is changed. You can get the sorting field by @ref currentField. */ - void doSearch( const QString& text ); + void doSearch( const TQString& text ); /** Emitted when the up key is pressed. @@ -73,16 +73,16 @@ class IncSearchWidget : public QWidget void timeout(); protected: - virtual void keyPressEvent( QKeyEvent* ); + virtual void keyPressEvent( TQKeyEvent* ); private: void initFields(); - QComboBox* mFieldCombo; + TQComboBox* mFieldCombo; KLineEdit* mSearchText; KABC::Field::List mFieldList; KABC::Field::List mViewFields; - QTimer* mInputTimer; + TQTimer* mInputTimer; }; #endif |