summaryrefslogtreecommitdiffstats
path: root/kioslaves/imap4/mimehdrline.h
diff options
context:
space:
mode:
Diffstat (limited to 'kioslaves/imap4/mimehdrline.h')
-rw-r--r--kioslaves/imap4/mimehdrline.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kioslaves/imap4/mimehdrline.h b/kioslaves/imap4/mimehdrline.h
index ae8fdd57..e31c1864 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 *);