From 9d349f528c551ffbc8637cdbc1c608a1a6ac1683 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 2 Jan 2009 07:34:52 +0000 Subject: Notification for deleting a character while an autocompletion is active. By Sergey Kishchenko. --- src/ScintillaBase.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index d1d9ad4cb..d2b6a3ed8 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -329,6 +329,11 @@ void ScintillaBase::AutoCompleteCharacterDeleted() { } else { AutoCompleteMoveToCurrentWord(); } + SCNotification scn = {0}; + scn.nmhdr.code = SCN_AUTOCCHARDELETED; + scn.wParam = 0; + scn.listType = 0; + NotifyParent(scn); } void ScintillaBase::AutoCompleteCompleted() { -- cgit v1.2.3