diff options
author | nyamatongwe <devnull@localhost> | 2003-02-04 10:39:19 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-04 10:39:19 +0000 |
commit | f89630afdc9a688bd5cb8f608050064f9539bd46 (patch) | |
tree | 56bbdcf3e0824528f3a924343439e56850d2a74c /src | |
parent | 6d92a32e837ad444679d8e4ab86534833ba9e0e2 (diff) | |
download | scintilla-mirror-f89630afdc9a688bd5cb8f608050064f9539bd46.tar.gz |
Patch from Mauritius Thinnes to set the type separator for autocompletion
images.
Diffstat (limited to 'src')
-rw-r--r-- | src/ScintillaBase.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 48de85191..a112a4af6 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -518,6 +518,13 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara ac.lb->ClearRegisteredImages(); break; + case SCI_AUTOCSETTYPESEPARATOR: + ac.SetTypesep(static_cast<char>(wParam)); + break; + + case SCI_AUTOCGETTYPESEPARATOR: + return ac.GetTypesep(); + case SCI_CALLTIPSHOW: { AutoCompleteCancel(); if (!ct.wCallTip.Created()) { |