diff options
Diffstat (limited to 'kspread/dialogs/kspread_dlg_find.h')
-rw-r--r-- | kspread/dialogs/kspread_dlg_find.h | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/kspread/dialogs/kspread_dlg_find.h b/kspread/dialogs/kspread_dlg_find.h index ecf5bf57..d0f35f75 100644 --- a/kspread/dialogs/kspread_dlg_find.h +++ b/kspread/dialogs/kspread_dlg_find.h @@ -22,21 +22,22 @@ #include <kfinddialog.h> -#include <qstringlist.h> +#include <tqstringlist.h> #include <kreplacedialog.h> -class QCheckBox; -class QPushButton; -class QComboBox; +class TQCheckBox; +class TQPushButton; +class TQComboBox; namespace KSpread { -class FindOption : public QObject +class FindOption : public TQObject { Q_OBJECT + TQ_OBJECT public: - FindOption( QWidget *parent); + FindOption( TQWidget *tqparent); bool searchInAllSheet() const; enum searchTypeValue { Value, Note}; @@ -52,19 +53,20 @@ signals: void adjustSize(); private: - QPushButton *m_moreOptions; - QCheckBox *m_searchInAllSheet; - QWidget *m_findExtension; - QComboBox *m_searchIn; - QComboBox *m_searchDirection; + TQPushButton *m_moreOptions; + TQCheckBox *m_searchInAllSheet; + TQWidget *m_findExtension; + TQComboBox *m_searchIn; + TQComboBox *m_searchDirection; }; class FindDlg : public KFindDialog { Q_OBJECT + TQ_OBJECT public: - FindDlg( QWidget *parent = 0, const char *name = 0, long options = 0, const QStringList &findStrings = QStringList(), bool hasSelection = false ); + FindDlg( TQWidget *tqparent = 0, const char *name = 0, long options = 0, const TQStringList &findStrings = TQStringList(), bool hasSelection = false ); ~FindDlg(); bool searchInAllSheet() const; FindOption::searchTypeValue searchType() const { return m_findOptions->searchType(); } @@ -79,9 +81,10 @@ class FindDlg : public KFindDialog class SearchDlg : public KReplaceDialog { Q_OBJECT + TQ_OBJECT public: - SearchDlg( QWidget *parent = 0, const char *name = 0, long options = 0, const QStringList &findStrings = QStringList(), const QStringList &replaceStrings = QStringList(), bool hasSelection = false ); + SearchDlg( TQWidget *tqparent = 0, const char *name = 0, long options = 0, const TQStringList &findStrings = TQStringList(), const TQStringList &replaceStrings = TQStringList(), bool hasSelection = false ); ~SearchDlg(); bool searchInAllSheet() const; FindOption::searchTypeValue searchType() const { return m_findOptions->searchType(); } |