From f89630afdc9a688bd5cb8f608050064f9539bd46 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 4 Feb 2003 10:39:19 +0000 Subject: Patch from Mauritius Thinnes to set the type separator for autocompletion images. --- src/ScintillaBase.cxx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') 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(wParam)); + break; + + case SCI_AUTOCGETTYPESEPARATOR: + return ac.GetTypesep(); + case SCI_CALLTIPSHOW: { AutoCompleteCancel(); if (!ct.wCallTip.Created()) { -- cgit v1.2.3