diff options
author | Neil <nyamatongwe@gmail.com> | 2022-09-12 09:16:16 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-09-12 09:16:16 +1000 |
commit | 355f308c13dc46747c5f8c4a232f74ccdb44ef58 (patch) | |
tree | f3d71d31db2f639747ae94debbf149dddce6641d /src/ScintillaBase.cxx | |
parent | e70788b928d786f155f91bbef183e462fc65535c (diff) | |
download | scintilla-mirror-355f308c13dc46747c5f8c4a232f74ccdb44ef58.tar.gz |
Remove NotifyLexerChanged notification from DocWatcher.
This is a private interface but could be used by independent platform layers
and was exposed by ScintillaDocument in the Qt implementation of ScintillaEdit.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 979a8b07f..e72f1b1d6 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -809,10 +809,6 @@ void ScintillaBase::NotifyStyleToNeeded(Sci::Position endStyleNeeded) { Editor::NotifyStyleToNeeded(endStyleNeeded); } -void ScintillaBase::NotifyLexerChanged(Document *, void *) { - vs.EnsureStyle(0xff); -} - sptr_t ScintillaBase::WndProc(Message iMessage, uptr_t wParam, sptr_t lParam) { switch (iMessage) { case Message::AutoCShow: |