diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2012-04-16 12:59:36 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2012-04-16 12:59:36 +1000 |
commit | 2d10600700ebff2919c3e7c19f832fed3eea84bb (patch) | |
tree | 993c1ebcc7a8ce10eb4293e24cc2d4580e09a46a /src/AutoComplete.cxx | |
parent | 551976903b87b89ed2d905bb2efbd098282615e4 (diff) | |
download | scintilla-mirror-2d10600700ebff2919c3e7c19f832fed3eea84bb.tar.gz |
Matched spelling change.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r-- | src/AutoComplete.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx index 644f16517..aa65810eb 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -32,7 +32,7 @@ AutoComplete::AutoComplete() : cancelAtStartPos(true), autoHide(true), dropRestOfWord(false), - ignoreCaseBehaviour(SC_CASEINSENSITITIVEBEHAVIOUR_RESPECTCASE) { + ignoreCaseBehaviour(SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE) { lb = ListBox::Allocate(); stopChars[0] = '\0'; fillUpChars[0] = '\0'; @@ -156,7 +156,7 @@ void AutoComplete::Select(const char *word) { } location = pivot; if (ignoreCase - && ignoreCaseBehaviour == SC_CASEINSENSITITIVEBEHAVIOUR_RESPECTCASE) { + && ignoreCaseBehaviour == SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE) { // Check for exact-case match for (; pivot <= end; pivot++) { lb->GetValue(pivot, item, maxItemLen); |