diff options
author | nyamatongwe <devnull@localhost> | 2002-10-08 00:42:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-10-08 00:42:36 +0000 |
commit | b1ed479e38d607f7dbbb6a1f7d30ef636eb85101 (patch) | |
tree | 7d3e6c21264e1f220ef48916100582c699ecdaf0 /src | |
parent | 19644c0a1ccdb780672020c20c254c1ac3061d3c (diff) | |
download | scintilla-mirror-b1ed479e38d607f7dbbb6a1f7d30ef636eb85101.tar.gz |
Added AppendText method.
Credit to Sergey.
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 790840f51..02687ae04 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4768,6 +4768,10 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return 0; } + case SCI_APPENDTEXT: + pdoc->InsertString(pdoc->Length(), CharPtrFromSPtr(lParam), wParam); + return 0; + case SCI_CLEARALL: ClearAll(); return 0; |