diff options
author | Neil <nyamatongwe@gmail.com> | 2020-05-03 19:40:15 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-05-03 19:40:15 +1000 |
commit | 4b450a69452a14fd9af6c426b91d04165fedc94a (patch) | |
tree | 47c4806178b43f175f56433b7ed1ebafb0446f1e /src/Document.h | |
parent | b24183b5a90b4ebeb951668d48f0e95a1a2819dd (diff) | |
download | scintilla-mirror-4b450a69452a14fd9af6c426b91d04165fedc94a.tar.gz |
Feature [feature-requests:1347]. Add InsertLines method to PerLine interface and
all implementations. This will allow insertion of lines in batches in a future
change set.
Added tests for PerLine implementations.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index a1d9ff7c2..2ff0e8b27 100644 --- a/src/Document.h +++ b/src/Document.h @@ -298,6 +298,7 @@ public: // From PerLine void Init() override; void InsertLine(Sci::Line line) override; + void InsertLines(Sci::Line line, Sci::Line lines) override; void RemoveLine(Sci::Line line) override; int LineEndTypesSupported() const; |