diff options
author | nyamatongwe <devnull@localhost> | 2013-04-01 16:27:36 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-04-01 16:27:36 +1100 |
commit | 56eb7dd09cbf8574e08e67bb32ae5ce89e0e5f4f (patch) | |
tree | 24ddcce920d33efb2fc5cddd8bb678e6eab75d8a /src/ScintillaBase.h | |
parent | 85cf9f34c48dc4fed341031b9df50be41d3ad518 (diff) | |
download | scintilla-mirror-56eb7dd09cbf8574e08e67bb32ae5ce89e0e5f4f.tar.gz |
Extract effect of choosing an autocompletion entry so it can be reused for both
user choice and single element list automatic insertion.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index e143f027d..bbd7f8fdf 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -64,6 +64,7 @@ protected: virtual void CancelModes(); virtual int KeyCommand(unsigned int iMessage); + void AutoCompleteInsert(Position startPos, int removeLen, const char *text, int textLen); void AutoCompleteStart(int lenEntered, const char *list); void AutoCompleteCancel(); void AutoCompleteMove(int delta); |