diff options
author | nyamatongwe <devnull@localhost> | 2002-06-08 05:25:48 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-06-08 05:25:48 +0000 |
commit | 2f568d1240118476e5a25ab22c70626e52cb4b11 (patch) | |
tree | 2dc416ff3bf3fd70c4b7c3c0ea2f0ff0080b6898 /src/ScintillaBase.h | |
parent | 545302d1b1d60072018cf5cc4ff5bdc502013ea6 (diff) | |
download | scintilla-mirror-2f568d1240118476e5a25ab22c70626e52cb4b11.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); |