diff --git a/src/libs/cplusplus/MatchingText.cpp b/src/libs/cplusplus/MatchingText.cpp index bbbb06b83112c5f223423f5deb86b690f16fa04b..20aa34f068325864c02684c1c47e31107b30010d 100644 --- a/src/libs/cplusplus/MatchingText.cpp +++ b/src/libs/cplusplus/MatchingText.cpp @@ -104,21 +104,43 @@ QString MatchingText::insertMatchingBrace(const QTextCursor &cursor, const QStri const QChar &la, int *skippedChars) const { QTextCursor tc = cursor; + QTextDocument *doc = tc.document(); QString text = textToProcess; const QString blockText = tc.block().text().mid(tc.columnNumber()); const int length = qMin(blockText.length(), textToProcess.length()); - for (int i = 0; i < length; ++i) { - const QChar ch1 = blockText.at(i); - const QChar ch2 = textToProcess.at(i); + const QChar previousChar = doc->characterAt(tc.selectionEnd() - 1); - if (ch1 != ch2) - break; - else if (! shouldOverrideChar(ch1)) - break; + bool escape = false; + + if (! text.isEmpty() && (text.at(0) == QLatin1Char('"') || + text.at(0) == QLatin1Char('\''))) { + if (previousChar == QLatin1Char('\\')) { + int escapeCount = 0; + int index = tc.selectionEnd() - 1; + do { + ++escapeCount; + --index; + } while (doc->characterAt(index) == QLatin1Char('\\')); - ++*skippedChars; + if ((escapeCount % 2) != 0) + escape = true; + } + } + + if (! escape) { + for (int i = 0; i < length; ++i) { + const QChar ch1 = blockText.at(i); + const QChar ch2 = textToProcess.at(i); + + if (ch1 != ch2) + break; + else if (! shouldOverrideChar(ch1)) + break; + + ++*skippedChars; + } } if (*skippedChars != 0) { @@ -142,6 +164,8 @@ QString MatchingText::insertMatchingBrace(const QTextCursor &cursor, const QStri if (isCompleteStringLiteral(tk, index - 1)) return QLatin1String("\""); + qDebug() << "*** here"; + return QString(); } else if (text.at(0) == QLatin1Char('\'') && (token.is(T_CHAR_LITERAL) || token.is(T_WIDE_CHAR_LITERAL))) { if (text.length() != 1)