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

Renamed maybeOverrideCharacter()

parent 81cac3cc
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ using namespace CPlusPlus;
enum { MAX_NUM_LINES = 20 };
static bool maybeOverrideChar(const QChar &ch)
static bool shouldOverrideChar(const QChar &ch)
{
switch (ch.unicode()) {
case ')': case ']': case ';': case '"': case '\'':
......@@ -109,7 +109,7 @@ QString MatchingText::insertMatchingBrace(const QTextCursor &cursor, const QStri
if (ch1 != ch2)
break;
else if (! maybeOverrideChar(ch1))
else if (! shouldOverrideChar(ch1))
break;
++*skippedChars;
......
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