Skip to content
Snippets Groups Projects
Commit 6c7c3331 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Cleanup

parent a5156e62
No related branches found
No related tags found
No related merge requests found
......@@ -40,12 +40,13 @@ enum { MAX_NUM_LINES = 20 };
static bool maybeOverrideChar(const QChar &ch)
{
if (ch == QLatin1Char(')')) return true;
else if (ch == QLatin1Char(']')) return true;
else if (ch == QLatin1Char(';')) return true;
else if (ch == QLatin1Char('"')) return true;
else if (ch == QLatin1Char('\'')) return true;
else return false;
switch (ch.unicode()) {
case ')': case ']': case ';': case '"': case '\'':
return true;
default:
return false;
}
}
static bool isCompleteStringLiteral(const BackwardsScanner &tk, int index, int startToken)
......@@ -76,22 +77,18 @@ static bool isCompleteCharLiteral(const BackwardsScanner &tk, int index, int sta
static bool shouldInsertMatchingText(const QChar &lookAhead)
{
if (lookAhead.isSpace())
return true;
else if (lookAhead == QLatin1Char('{'))
return true;
else if (lookAhead == QLatin1Char('}'))
return true;
else if (lookAhead == QLatin1Char(']'))
return true;
else if (lookAhead == QLatin1Char(')'))
return true;
else if (lookAhead == QLatin1Char(';'))
return true;
else if (lookAhead == QLatin1Char(','))
switch (lookAhead.unicode()) {
case '{': case '}':
case ']': case ')':
case ';': case ',':
return true;
return false;
default:
if (lookAhead.isSpace())
return true;
return false;
} // switch
}
MatchingText::MatchingText()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment