aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2012-04-16 12:59:36 +1000
committernyamatongwe <nyamatongwe@gmail.com>2012-04-16 12:59:36 +1000
commit2d10600700ebff2919c3e7c19f832fed3eea84bb (patch)
tree993c1ebcc7a8ce10eb4293e24cc2d4580e09a46a /src/AutoComplete.cxx
parent551976903b87b89ed2d905bb2efbd098282615e4 (diff)
downloadscintilla-mirror-2d10600700ebff2919c3e7c19f832fed3eea84bb.tar.gz
Matched spelling change.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r--src/AutoComplete.cxx4
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);