aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
diff options
context:
space:
mode:
authorZufu Liu <unknown>2021-07-15 17:29:24 +1000
committerZufu Liu <unknown>2021-07-15 17:29:24 +1000
commit39be73514c317e7d672e0a09862571e64f8979da (patch)
treebbfb503821368eaa608174af4532f50026e3f723 /src/Document.cxx
parentf4878568f55a9c3b6eef8cc8fad9b1aa7e8ab4ce (diff)
downloadscintilla-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 'src/Document.cxx')
-rw-r--r--src/Document.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index 6194f772e..96bee868e 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2266,6 +2266,10 @@ Sci::Line Document::LinesTotal() const noexcept {
return cb.Lines();
}
+void Document::AllocateLines(Sci::Line lines) {
+ cb.AllocateLines(lines);
+}
+
void Document::SetDefaultCharClasses(bool includeWordClass) {
charClass.SetDefaultCharClasses(includeWordClass);
}