From f1402b18740162be32f67d30a7b259787f76a3c7 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Thu, 22 Aug 2013 14:18:44 -0500 Subject: [PATCH] Removes unreferenced variable --- src/network/qxtmailmessage.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/network/qxtmailmessage.cpp b/src/network/qxtmailmessage.cpp index 64af0917..210cfcef 100644 --- a/src/network/qxtmailmessage.cpp +++ b/src/network/qxtmailmessage.cpp @@ -679,7 +679,6 @@ void QxtRfc2822Parser::parseBody(QxtMailMessagePrivate* msg) { qDebug("regexp %s not valid ! %s", bndRe.pattern().toLatin1().data(), bndRe.errorString().toLatin1().data()); } - bool last = false; // keep track of the position of two consecutive boundary delimiters: // begin* is the position of the delimiter first character, // end* is the position of the first character of the part following it. @@ -691,13 +690,7 @@ void QxtRfc2822Parser::parseBody(QxtMailMessagePrivate* msg) { beginSecond = bndRe.pos() + bndRe.cap(1).length(); // add length of preceding line break, if any endSecond = bndRe.pos() + bndRe.matchedLength(); -#if QT_VERSION >= 0x040600 - if (bndRe.captureCount() == 2 && bndRe.cap(2) == "--") last = true; -#else - if (bndRe.numCaptures() == 2 && bndRe.cap(2) == "--") last = true; -#endif -// qDebug("found%s boundary delimiter at position %d.", last?" last":"", beginSecond); // qDebug("%d captures", bndRe.numCaptures()); // foreach(QString capture, bndRe.capturedTexts()) // {