diff options
author | nyamatongwe <unknown> | 2009-01-02 07:34:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-01-02 07:34:52 +0000 |
commit | 9d349f528c551ffbc8637cdbc1c608a1a6ac1683 (patch) | |
tree | a8ba7fc5027ba39b278dab36a2450156e0ae082a /src/ScintillaBase.cxx | |
parent | d6571fa63db365bced55161c5d2e370b0097b4f8 (diff) | |
download | scintilla-mirror-9d349f528c551ffbc8637cdbc1c608a1a6ac1683.tar.gz |
Notification for deleting a character while an autocompletion is active.
By Sergey Kishchenko.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
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() { |