From 215215c5fc8f76e0857602b89a5ed1d7c41c080c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 26 May 2012 15:25:57 +1000 Subject: Add DeleteRange method. --- src/Editor.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/Editor.cxx b/src/Editor.cxx index 8aea4db1d..d72ff302c 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7480,6 +7480,10 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { ClearAll(); return 0; + case SCI_DELETERANGE: + pdoc->DeleteChars(wParam, lParam); + return 0; + case SCI_CLEARDOCUMENTSTYLE: ClearDocumentStyle(); return 0; -- cgit v1.2.3