diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:35:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:35:40 -0600 |
commit | 17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch) | |
tree | cd0d57c975a55e05aac71794b363748f24625875 /kioslaves/imap4/mailheader.cc | |
parent | a684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff) | |
download | tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip |
Rename additional global TQt functions
Diffstat (limited to 'kioslaves/imap4/mailheader.cc')
-rw-r--r-- | kioslaves/imap4/mailheader.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kioslaves/imap4/mailheader.cc b/kioslaves/imap4/mailheader.cc index 8ae36f4c3..c520b9094 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) |