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/mimehdrline.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/mimehdrline.h')
-rw-r--r-- | kioslaves/imap4/mimehdrline.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kioslaves/imap4/mimehdrline.h b/kioslaves/imap4/mimehdrline.h index ae8fdd57c..e31c18649 100644 --- a/kioslaves/imap4/mimehdrline.h +++ b/kioslaves/imap4/mimehdrline.h @@ -19,8 +19,8 @@ #define MIMEHDRLINE_H -#include <qcstring.h> -#include <qasciidict.h> +#include <tqcstring.h> +#include <tqasciidict.h> /** *@author Sven Carstens @@ -31,17 +31,17 @@ class mimeHdrLine public: mimeHdrLine (); mimeHdrLine (mimeHdrLine *); - mimeHdrLine (const QCString &, const QCString &); + mimeHdrLine (const TQCString &, const TQCString &); ~mimeHdrLine (); /** parse a Line into the class and report characters slurped */ int setStr (const char *); int appendStr (const char *); /** return the value */ - const QCString& getValue (); + const TQCString& getValue (); /** return the label */ - const QCString& getLabel (); - static QCString truncateLine (QCString, unsigned int truncate = 80); + const TQCString& getLabel (); + static TQCString truncateLine (TQCString, unsigned int truncate = 80); static int parseSeparator (char, const char *); static int parseQuoted (char, char, const char *); /** skip all white space characters */ @@ -54,10 +54,10 @@ and report characters slurped */ protected: // Protected attributes /** contains the Value */ - QCString mimeValue; + TQCString mimeValue; /** contains the Label of the line */ - QCString mimeLabel; + TQCString mimeLabel; protected: // Protected methods /** parses a continuated line */ int parseFullLine (const char *); |