summaryrefslogtreecommitdiffstats
path: root/korn/mailsubject.h
diff options
context:
space:
mode:
Diffstat (limited to 'korn/mailsubject.h')
-rw-r--r--korn/mailsubject.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/korn/mailsubject.h b/korn/mailsubject.h
index f3e2e457..aecd19f5 100644
--- a/korn/mailsubject.h
+++ b/korn/mailsubject.h
@@ -69,38 +69,38 @@ public:
* Set the mails subject.
* @param subject the mails subject.
*/
- void setSubject(const QString & subject) {_subject = subject;}
+ void setSubject(const TQString & subject) {_subject = subject;}
/**
* Return the subject.
* @return the subject.
*/
- const QString & getSubject() const {return _subject;}
+ const TQString & getSubject() const {return _subject;}
/**
* Set the mails sender.
* @param sender the mails sender.
*/
- void setSender(const QString & sender) {_sender = sender;}
+ void setSender(const TQString & sender) {_sender = sender;}
/**
* Return the sender.
* @return the sender.
*/
- const QString & getSender() const {return _sender;}
+ const TQString & getSender() const {return _sender;}
/**
* Set the mails header and (if possible) body.
* @param header the mails header with or without body (see fullMessage parameter).
* @param fullMessage true, if header contains the message body as well, false otherwise.
*/
- void setHeader(const QString & header, bool fullMessage) {_header = header; _fullMessage = fullMessage;}
+ void setHeader(const TQString & header, bool fullMessage) {_header = header; _fullMessage = fullMessage;}
/**
* Return the header or the full message (if isHeaderFullMessage() is true).
* @return the header or the full message.
*/
- const QString & getHeader() const {return _header;}
+ const TQString & getHeader() const {return _header;}
/**
* Return true, if the header contains the header and the full message.
@@ -137,7 +137,7 @@ public:
* Return a string representation of this (for debugging purposes only)
* @return a string representation
*/
- QString toString() const;
+ TQString toString() const;
/**
* Sets the KMailDrop field.
@@ -160,12 +160,12 @@ private:
/**
* Decode a string based on RFC2047
*/
- QString decodeRFC2047String(const QCString& aStr);
+ TQString decodeRFC2047String(const TQCString& aStr);
/**
* Unfolding a string (basically changing tabs to spaces
*/
- QCString unfold( const QCString & header );
+ TQCString unfold( const TQCString & header );
/**
* Returns true if the parameter is a blank (or tab)
@@ -181,7 +181,7 @@ private:
/**
* ??
*/
- const QTextCodec* codecForName(const QCString& _str);
+ const TQTextCodec* codecForName(const TQCString& _str);
};
#endif