Renamed maybeOverrideCharacter()

This commit is contained in:
Roberto Raggi
2009-09-18 12:26:39 +02:00
parent 81cac3cc49
commit 5df7b96735

View File

@@ -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;