diff options
Diffstat (limited to 'kmail/mailsourceviewer.h')
-rw-r--r-- | kmail/mailsourceviewer.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/mailsourceviewer.h b/kmail/mailsourceviewer.h index 0bed8b415..10d242584 100644 --- a/kmail/mailsourceviewer.h +++ b/kmail/mailsourceviewer.h @@ -33,7 +33,7 @@ #define MAILSOURCEVIEWER_H #include <ktextbrowser.h> -#include <qsyntaxhighlighter.h> +#include <tqsyntaxhighlighter.h> /** @@ -49,19 +49,19 @@ namespace KMail { class MailSourceHighlighter : public QSyntaxHighlighter { public: - MailSourceHighlighter( QTextEdit* edit ) - : QSyntaxHighlighter( edit ) + MailSourceHighlighter( TQTextEdit* edit ) + : TQSyntaxHighlighter( edit ) {} - int highlightParagraph( const QString& text, int ); + int highlightParagraph( const TQString& text, int ); }; class MailSourceViewer : public KTextBrowser { public: - MailSourceViewer( QWidget *parent = 0, const char *name = 0 ); + MailSourceViewer( TQWidget *parent = 0, const char *name = 0 ); ~MailSourceViewer(); - void setText( const QString& text ); + void setText( const TQString& text ); private: MailSourceHighlighter *mSourceHighLighter; }; |