diff options
Diffstat (limited to 'kate/app/kategrepdialog.h')
-rw-r--r-- | kate/app/kategrepdialog.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/kate/app/kategrepdialog.h b/kate/app/kategrepdialog.h index 5ed3b2b69..23ba00540 100644 --- a/kate/app/kategrepdialog.h +++ b/kate/app/kategrepdialog.h @@ -22,7 +22,7 @@ #define _GREPDIALOG_H_ #include <kdialog.h> -#include <qstringlist.h> +#include <tqstringlist.h> class QLineEdit; class KComboBox; @@ -40,25 +40,25 @@ class GrepTool : public QWidget Q_OBJECT public: - GrepTool(QWidget *parent, const char *name=0); + GrepTool(TQWidget *parent, const char *name=0); ~GrepTool(); // only updates if the dir you give to it differs from the last one given to it ! - void updateDirName(const QString &); + void updateDirName(const TQString &); - void setDirName(const QString &); + void setDirName(const TQString &); signals: - void itemSelected(const QString &abs_filename, int line); + void itemSelected(const TQString &abs_filename, int line); public slots: - void slotSearchFor(const QString &pattern); + void slotSearchFor(const TQString &pattern); protected: - bool eventFilter( QObject *, QEvent * ); - void focusInEvent ( QFocusEvent * ); - void showEvent( QShowEvent * ); + bool eventFilter( TQObject *, TQEvent * ); + void focusInEvent ( TQFocusEvent * ); + void showEvent( TQShowEvent * ); bool m_fixFocus; private slots: @@ -66,31 +66,31 @@ private slots: void childExited(); void receivedOutput(KProcess *proc, char *buffer, int buflen); void receivedErrOutput(KProcess *proc, char *buffer, int buflen); - void itemSelected(const QString&); + void itemSelected(const TQString&); void slotSearch(); void slotCancel(); void slotClear(); - void patternTextChanged( const QString &); + void patternTextChanged( const TQString &); private: void processOutput(); void finish(); - QLineEdit *leTemplate; + TQLineEdit *leTemplate; KComboBox *cmbFiles, *cmbPattern; KURLRequester *cmbDir; - QCheckBox *cbRecursive; - QCheckBox *cbCasesensitive, *cbRegex; - QListBox *lbResult; + TQCheckBox *cbRecursive; + TQCheckBox *cbCasesensitive, *cbRegex; + TQListBox *lbResult; KPushButton *btnSearch, *btnClear; KProcess *childproc; - QString buf; - QString errbuf; + TQString buf; + TQString errbuf; KConfig* config; - QStringList lastSearchItems; - QStringList lastSearchPaths; - QStringList lastSearchFiles; - QString m_lastUpdatedDir; - QString m_workingDir; + TQStringList lastSearchItems; + TQStringList lastSearchPaths; + TQStringList lastSearchFiles; + TQString m_lastUpdatedDir; + TQString m_workingDir; }; |