From 17e2ed52dbf8fac39a04331da02b9572e9e2e304 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:35:40 -0600 Subject: Rename additional global TQt functions --- kioslaves/imap4/mailheader.cc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'kioslaves/imap4/mailheader.cc') 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) -- cgit v1.2.1