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 | 37018ef28c480627860c5e7fafd9baec6f4211fe (patch) | |
tree | c49db2af90769c96ab21abc9ce9dd784af3cdf50 /src | |
parent | 7621fd7728520b578d2d71a27c96e979368c8910 (diff) | |
download | scintilla-mirror-37018ef28c480627860c5e7fafd9baec6f4211fe.tar.gz |
Matched spelling change.
Diffstat (limited to 'src')
-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); |