summaryrefslogtreecommitdiffstats
path: root/kmail/filehtmlwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/filehtmlwriter.h')
-rw-r--r--kmail/filehtmlwriter.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/filehtmlwriter.h b/kmail/filehtmlwriter.h
index f0b81e5a..9897bc5e 100644
--- a/kmail/filehtmlwriter.h
+++ b/kmail/filehtmlwriter.h
@@ -34,8 +34,8 @@
#include "interfaces/htmlwriter.h"
-#include <qfile.h>
-#include <qtextstream.h>
+#include <tqfile.h>
+#include <tqtextstream.h>
class QString;
@@ -43,23 +43,23 @@ namespace KMail {
class FileHtmlWriter : public KMail::HtmlWriter {
public:
- FileHtmlWriter( const QString & filename );
+ FileHtmlWriter( const TQString & filename );
virtual ~FileHtmlWriter();
- void begin( const QString & cssDefs );
+ void begin( const TQString & cssDefs );
void end();
void reset();
- void write( const QString & str );
- void queue( const QString & str );
+ void write( const TQString & str );
+ void queue( const TQString & str );
void flush();
- void embedPart( const QCString & contentId, const QString & url );
+ void embedPart( const TQCString & contentId, const TQString & url );
private:
void openOrWarn();
private:
- QFile mFile;
- QTextStream mStream;
+ TQFile mFile;
+ TQTextStream mStream;
};
} // namespace KMail