summaryrefslogtreecommitdiffstats
path: root/kaddressbook/incsearchwidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/incsearchwidget.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaddressbook/incsearchwidget.h')
-rw-r--r--kaddressbook/incsearchwidget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/incsearchwidget.h b/kaddressbook/incsearchwidget.h
index c4eb1936..f1ef00f4 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