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.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/kioslaves/imap4/mailheader.cc b/kioslaves/imap4/mailheader.cc
index 76e03ace..8ae36f4c 100644
--- a/kioslaves/imap4/mailheader.cc
+++ b/kioslaves/imap4/mailheader.cc
@@ -76,8 +76,8 @@ mailHeader::addHdrLine (mimeHdrLine * inLine)
goto out;
}
if (!qstricmp (label.data (), "Message-ID")) {
- int start = value.tqfindRev ('<');
- int end = value.tqfindRev ('>');
+ int start = value.findRev ('<');
+ int end = value.findRev ('>');
if (start < end)
messageID = value.mid (start, end - start + 1);
else {
@@ -87,8 +87,8 @@ mailHeader::addHdrLine (mimeHdrLine * inLine)
goto out;
}
if (!qstricmp (label.data (), "In-Reply-To")) {
- int start = value.tqfindRev ('<');
- int end = value.tqfindRev ('>');
+ int start = value.findRev ('<');
+ int end = value.findRev ('>');
if (start < end)
inReplyTo = value.mid (start, end - start + 1);
goto out;