diff options
author | Zufu Liu <unknown> | 2021-07-15 17:29:24 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-07-15 17:29:24 +1000 |
commit | 39be73514c317e7d672e0a09862571e64f8979da (patch) | |
tree | bbfb503821368eaa608174af4532f50026e3f723 /call | |
parent | f4878568f55a9c3b6eef8cc8fad9b1aa7e8ab4ce (diff) | |
download | scintilla-mirror-39be73514c317e7d672e0a09862571e64f8979da.tar.gz |
Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indices
to hold some number of lines. This is an optimization that can decrease
reallocation overhead.
Diffstat (limited to 'call')
-rw-r--r-- | call/ScintillaCall.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/call/ScintillaCall.cxx b/call/ScintillaCall.cxx index f9bffeb64..bec5ccfed 100644 --- a/call/ScintillaCall.cxx +++ b/call/ScintillaCall.cxx @@ -1120,6 +1120,10 @@ Line ScintillaCall::LineCount() { return Call(Message::GetLineCount); } +void ScintillaCall::AllocateLines(Line lines) { + Call(Message::AllocateLines, lines); +} + void ScintillaCall::SetMarginLeft(int pixelWidth) { Call(Message::SetMarginLeft, 0, pixelWidth); } |