diff options
author | nyamatongwe <unknown> | 2002-10-08 00:42:36 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-10-08 00:42:36 +0000 |
commit | ea3685f0c103ad8469959088a75ece739c75806a (patch) | |
tree | 7d3e6c21264e1f220ef48916100582c699ecdaf0 /src | |
parent | 25171eb9355a88a107de3e251bb7f19790bdf971 (diff) | |
download | scintilla-mirror-ea3685f0c103ad8469959088a75ece739c75806a.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; |