aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-02-04 10:39:19 +0000
committernyamatongwe <unknown>2003-02-04 10:39:19 +0000
commit45951fc82179317ed4ee90d3e376003771a9b7bc (patch)
tree56bbdcf3e0824528f3a924343439e56850d2a74c /src
parent1e4eea2afb009595fa772a8162eaaa105e68c99a (diff)
downloadscintilla-mirror-45951fc82179317ed4ee90d3e376003771a9b7bc.tar.gz
Patch from Mauritius Thinnes to set the type separator for autocompletion
images.
Diffstat (limited to 'src')
-rw-r--r--src/ScintillaBase.cxx7
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()) {