diff options
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 |