summaryrefslogtreecommitdiffstats
path: root/kmail/interfaces/htmlwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/interfaces/htmlwriter.h')
-rw-r--r--kmail/interfaces/htmlwriter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/interfaces/htmlwriter.h b/kmail/interfaces/htmlwriter.h
index 3621038b..b95526b3 100644
--- a/kmail/interfaces/htmlwriter.h
+++ b/kmail/interfaces/htmlwriter.h
@@ -49,9 +49,9 @@ namespace KMail {
virtual ~HtmlWriter() {}
/** Signal the begin of stuff to write, and give the CSS definitions */
- virtual void begin( const QString & cssDefinitions ) = 0;
+ virtual void begin( const TQString & cssDefinitions ) = 0;
/** Write out a chunk of text. No HTML escaping is performed. */
- virtual void write( const QString & html ) = 0;
+ virtual void write( const TQString & html ) = 0;
/** Signal the end of stuff to write. */
virtual void end() = 0;
};
@@ -104,14 +104,14 @@ namespace KMail {
call #begin() again. */
virtual void reset() = 0;
- virtual void queue( const QString & str ) = 0;
+ virtual void queue( const TQString & str ) = 0;
/** (Start) flushing internal buffers, if any. */
virtual void flush() = 0;
/**
* Embed a part with Content-ID @p contentId, using url @p url.
*/
- virtual void embedPart( const QCString & contentId, const QString & url ) = 0;
+ virtual void embedPart( const TQCString & contentId, const TQString & url ) = 0;
};
} // namespace KMail