summaryrefslogtreecommitdiffstats
path: root/kmail/khtmlparthtmlwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/khtmlparthtmlwriter.h')
-rw-r--r--kmail/khtmlparthtmlwriter.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/khtmlparthtmlwriter.h b/kmail/khtmlparthtmlwriter.h
index 92eb15a9..82679d1e 100644
--- a/kmail/khtmlparthtmlwriter.h
+++ b/kmail/khtmlparthtmlwriter.h
@@ -33,32 +33,32 @@
#define __KMAIL_KHTMLPARTHTMLWRITER_H__
#include "interfaces/htmlwriter.h"
-#include <qobject.h>
+#include <tqobject.h>
-#include <qstringlist.h>
-#include <qtimer.h>
+#include <tqstringlist.h>
+#include <tqtimer.h>
class QString;
class KHTMLPart;
namespace KMail {
- class KHtmlPartHtmlWriter : public QObject, public HtmlWriter {
+ class KHtmlPartHtmlWriter : public TQObject, public HtmlWriter {
Q_OBJECT
public:
// Key is Content-Id, value is URL
- typedef QMap<QString, QString> EmbeddedPartMap;
+ typedef TQMap<TQString, TQString> EmbeddedPartMap;
KHtmlPartHtmlWriter( KHTMLPart * part,
- QObject * parent=0, const char * name = 0 );
+ TQObject * parent=0, const char * name = 0 );
virtual ~KHtmlPartHtmlWriter();
- 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 slots:
void slotWriteNextHtmlChunk();
@@ -68,8 +68,8 @@ namespace KMail {
private:
KHTMLPart * mHtmlPart;
- QStringList mHtmlQueue;
- QTimer mHtmlTimer;
+ TQStringList mHtmlQueue;
+ TQTimer mHtmlTimer;
enum State {
Begun,
Queued,