diff options
author | nyamatongwe <unknown> | 2002-08-24 12:41:12 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-08-24 12:41:12 +0000 |
commit | aaffbd0f6b9f040762987a629b96c31d5ba04638 (patch) | |
tree | e1c492827c28163e9d3bfc9abe249bcf50abeb15 /src/ScintillaBase.h | |
parent | c961d3de76d36bc0a39147a04ff645d5cb4e4e66 (diff) | |
download | scintilla-mirror-aaffbd0f6b9f040762987a629b96c31d5ba04638.tar.gz |
Changed autocomplete to only cancel at start when deleting characters.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 3 |
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); |