aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-11-21 12:35:51 +0000
committernyamatongwe <devnull@localhost>2002-11-21 12:35:51 +0000
commit7bc08cce00adf4ddc6cd225e4219b625ed7147a0 (patch)
treef3b69c94fcefff4ff2b0828a740940b9d0b96fb6 /src/ScintillaBase.cxx
parent4882333d9fd449bbda241ede50d949130ec0ea19 (diff)
downloadscintilla-mirror-7bc08cce00adf4ddc6cd225e4219b625ed7147a0.tar.gz
Patch from Biswa to add icons to autocompletion lists.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index ab6e9a19b..1c44b0bd6 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -509,6 +509,10 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara
case SCI_AUTOCGETDROPRESTOFWORD:
return ac.dropRestOfWord;
+ case SCI_REGISTERIMAGE:
+ ac.lb.SetTypeXpm(wParam, reinterpret_cast<const char **>(lParam));
+ break;
+
case SCI_CALLTIPSHOW: {
AutoCompleteCancel();
if (!ct.wCallTip.Created()) {