diff options
author | nyamatongwe <unknown> | 2002-06-08 05:25:48 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-06-08 05:25:48 +0000 |
commit | 08e698f6de9cb1be41f1a61956126eedef41ef7d (patch) | |
tree | 2dc416ff3bf3fd70c4b7c3c0ea2f0ff0080b6898 /src/ScintillaBase.h | |
parent | 2c5b647c3ccfa9a6ba413687006ed46744e8a921 (diff) | |
download | scintilla-mirror-08e698f6de9cb1be41f1a61956126eedef41ef7d.tar.gz |
Changed autocompletion fill up character handling to ensure the fill up character is added separately and is seen as a char added notification so that calltips can be shown.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index 7e3887c15..28c089edd 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -66,7 +66,7 @@ protected: void AutoCompleteCancel(); void AutoCompleteMove(int delta); void AutoCompleteChanged(char ch=0); - void AutoCompleteCompleted(char fillUp='\0'); + void AutoCompleteCompleted(); void AutoCompleteMoveToCurrentWord(); static void AutoCompleteDoubleClick(void* p); |