summaryrefslogtreecommitdiffstats
path: root/kioslaves/imap4/mailheader.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kioslaves/imap4/mailheader.cc')
-rw-r--r--kioslaves/imap4/mailheader.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/kioslaves/imap4/mailheader.cc b/kioslaves/imap4/mailheader.cc
index 8ae36f4c..c520b909 100644
--- a/kioslaves/imap4/mailheader.cc
+++ b/kioslaves/imap4/mailheader.cc
@@ -39,54 +39,54 @@ mailHeader::addHdrLine (mimeHdrLine * inLine)
const TQCString label(addLine->getLabel());
TQCString value(addLine->getValue());
- if (!qstricmp (label, "Return-Path")) {
+ if (!tqstricmp (label, "Return-Path")) {
returnpathAdr.parseAddress (value.data ());
goto out;
}
- if (!qstricmp (label, "Sender")) {
+ if (!tqstricmp (label, "Sender")) {
senderAdr.parseAddress (value.data ());
goto out;
}
- if (!qstricmp (label, "From")) {
+ if (!tqstricmp (label, "From")) {
fromAdr.parseAddress (value.data ());
goto out;
}
- if (!qstricmp (label, "Reply-To")) {
+ if (!tqstricmp (label, "Reply-To")) {
replytoAdr.parseAddress (value.data ());
goto out;
}
- if (!qstricmp (label, "To")) {
+ if (!tqstricmp (label, "To")) {
mailHeader::parseAddressList (value, &toAdr);
goto out;
}
- if (!qstricmp (label, "CC")) {
+ if (!tqstricmp (label, "CC")) {
mailHeader::parseAddressList (value, &ccAdr);
goto out;
}
- if (!qstricmp (label, "BCC")) {
+ if (!tqstricmp (label, "BCC")) {
mailHeader::parseAddressList (value, &bccAdr);
goto out;
}
- if (!qstricmp (label, "Subject")) {
+ if (!tqstricmp (label, "Subject")) {
_subject = value.simplifyWhiteSpace();
goto out;
}
- if (!qstricmp (label.data (), "Date")) {
+ if (!tqstricmp (label.data (), "Date")) {
mDate = value;
goto out;
}
- if (!qstricmp (label.data (), "Message-ID")) {
+ if (!tqstricmp (label.data (), "Message-ID")) {
int start = value.findRev ('<');
int end = value.findRev ('>');
if (start < end)
messageID = value.mid (start, end - start + 1);
else {
- qWarning("bad Message-ID");
+ tqWarning("bad Message-ID");
/* messageID = value; */
}
goto out;
}
- if (!qstricmp (label.data (), "In-Reply-To")) {
+ if (!tqstricmp (label.data (), "In-Reply-To")) {
int start = value.findRev ('<');
int end = value.findRev ('>');
if (start < end)