summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/regexphighlighter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kregexpeditor/regexphighlighter.h')
-rw-r--r--kregexpeditor/regexphighlighter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kregexpeditor/regexphighlighter.h b/kregexpeditor/regexphighlighter.h
index 92219b1..9a8003c 100644
--- a/kregexpeditor/regexphighlighter.h
+++ b/kregexpeditor/regexphighlighter.h
@@ -18,18 +18,18 @@
#ifndef REGEXPHIGHLIGHTER_H
#define REGEXPHIGHLIGHTER_H
-#include <qsyntaxhighlighter.h>
+#include <tqsyntaxhighlighter.h>
class RegexpHighlighter :public QSyntaxHighlighter
{
public:
- RegexpHighlighter( QTextEdit* edit );
- void setRegExp( const QString& regexp );
+ RegexpHighlighter( TQTextEdit* edit );
+ void setRegExp( const TQString& regexp );
void setCaseSensitive( bool );
void setMinimal( bool );
protected:
- QString _regexp;
+ TQString _regexp;
bool _caseSensitive, _minimal;
};