aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-08-24 12:41:12 +0000
committernyamatongwe <devnull@localhost>2002-08-24 12:41:12 +0000
commit79466951bb5b1a410b6080a7ebd993f757c0d82a (patch)
treee1c492827c28163e9d3bfc9abe249bcf50abeb15 /src/ScintillaBase.h
parent1adc95e4c6e4635f204e3c3022d659deaf164b70 (diff)
downloadscintilla-mirror-79466951bb5b1a410b6080a7ebd993f757c0d82a.tar.gz
Changed autocomplete to only cancel at start when deleting characters.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r--src/ScintillaBase.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h
index 28c089edd..e68aeb608 100644
--- a/src/ScintillaBase.h
+++ b/src/ScintillaBase.h
@@ -65,7 +65,8 @@ protected:
void AutoCompleteStart(int lenEntered, const char *list);
void AutoCompleteCancel();
void AutoCompleteMove(int delta);
- void AutoCompleteChanged(char ch=0);
+ void AutoCompleteCharacterAdded(char ch);
+ void AutoCompleteCharacterDeleted();
void AutoCompleteCompleted();
void AutoCompleteMoveToCurrentWord();
static void AutoCompleteDoubleClick(void* p);