diff options
Diffstat (limited to 'part/kxesearchdialog.h')
-rw-r--r-- | part/kxesearchdialog.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/part/kxesearchdialog.h b/part/kxesearchdialog.h index abe7f3d..3ec8630 100644 --- a/part/kxesearchdialog.h +++ b/part/kxesearchdialog.h @@ -20,8 +20,8 @@ #include "kxesearchdialogbase.h" -#include <qlineedit.h> -#include <qcheckbox.h> +#include <tqlineedit.h> +#include <tqcheckbox.h> /** * Dialog for input information from user @@ -33,9 +33,9 @@ class KXESearchDialog : public KXESearchDialogBase Q_OBJECT public: - KXESearchDialog( QWidget * pParent, const char * pszName = 0, bool bModal = true ); + KXESearchDialog( TQWidget * pParent, const char * pszName = 0, bool bModal = true ); - QString getSearchString() const { return m_pEditSearchedString->text(); } + TQString getSearchString() const { return m_pEditSearchedString->text(); } bool getMatchCase() const { return m_pCheckBoxMatchCase->isChecked(); } bool getInElementNames() const { return m_pCheckBoxElementNames->isChecked(); } bool getInAttributeNames() const { return m_pCheckBoxAttributeNames->isChecked(); } @@ -48,7 +48,7 @@ class KXESearchDialog : public KXESearchDialogBase protected slots: /** Called when text in edit line is changed */ - virtual void slotTextChanged(const QString & ); + virtual void slotTextChanged(const TQString & ); /** Called on a change of the "find in" checkbuttons. */ virtual void slotFindInChanged(); |