diff options
author | Slávek Banko <[email protected]> | 2016-03-26 12:35:35 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-03-26 14:10:15 +0100 |
commit | 38dca4b75c471ddf950e2f9f03801c550d7d26fd (patch) | |
tree | f5923ce5d84971f1f394baf7411146f078c02fab /part/kxesearchdialog.h | |
parent | e28665ce3b2e9ec6f09b4c021db7443cac3c4128 (diff) | |
download | kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.tar.gz kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.zip |
Initial TQt conversion
Signed-off-by: Slávek Banko <[email protected]>
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(); |