summaryrefslogtreecommitdiffstats
path: root/korn/mailsubject.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /korn/mailsubject.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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