diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kioslaves/imap4/mailaddress.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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 'kioslaves/imap4/mailaddress.h')
-rw-r--r-- | kioslaves/imap4/mailaddress.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kioslaves/imap4/mailaddress.h b/kioslaves/imap4/mailaddress.h index 4ee68a396..644034b24 100644 --- a/kioslaves/imap4/mailaddress.h +++ b/kioslaves/imap4/mailaddress.h @@ -23,9 +23,9 @@ * *********************************************************************/ -#include <qptrlist.h> -#include <qstring.h> -#include <qcstring.h> +#include <tqptrlist.h> +#include <tqstring.h> +#include <tqcstring.h> #include "rfcdecoder.h" class mailAddress @@ -37,45 +37,45 @@ public: mailAddress (const mailAddress &); mailAddress & operator = (const mailAddress &); - void setUser (const QCString & aUser) + void setUser (const TQCString & aUser) { user = aUser; } - const QCString & getUser () const + const TQCString & getUser () const { return user; } - void setHost (const QCString & aHost) + void setHost (const TQCString & aHost) { host = aHost; } - const QCString & getHost () const + const TQCString & getHost () const { return host; } - void setFullName (const QString & aFull); - const QString getFullName () const; + void setFullName (const TQString & aFull); + const TQString getFullName () const; - void setComment (const QString & aComment); - void setCommentRaw (const QCString &); - const QString getComment () const; - const QCString & getCommentRaw () const; + void setComment (const TQString & aComment); + void setCommentRaw (const TQCString &); + const TQString getComment () const; + const TQCString & getCommentRaw () const; int parseAddress (char *); - const QCString getStr (); + const TQCString getStr (); bool isEmpty () const; - static QString emailAddrAsAnchor (const mailAddress &, bool); - static QString emailAddrAsAnchor (const QPtrList < mailAddress > &, bool); + static TQString emailAddrAsAnchor (const mailAddress &, bool); + static TQString emailAddrAsAnchor (const TQPtrList < mailAddress > &, bool); void clear(); private: - QCString user; - QCString host; - QCString rawFullName; - QCString rawComment; + TQCString user; + TQCString host; + TQCString rawFullName; + TQCString rawComment; }; #endif |