diff options
author | nyamatongwe <devnull@localhost> | 2012-05-26 15:25:57 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-05-26 15:25:57 +1000 |
commit | 3828986655c93d7f496ddce9567c53cab6cf57bb (patch) | |
tree | f1e5140f969c3f8865e17d3b31610b733ee5abc5 /src | |
parent | 1596a6d6b4540980cd6a8249460d881d6d190c1f (diff) | |
download | scintilla-mirror-3828986655c93d7f496ddce9567c53cab6cf57bb.tar.gz |
Add DeleteRange method.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
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; |