From 60cd87963a771c22eda56365f4059c1fa117e3a3 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 3 May 2020 19:40:15 +1000 Subject: Backport: 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. Backport of changeset 8227:9fc611fc6848. --- src/Document.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Document.h') diff --git a/src/Document.h b/src/Document.h index 64ce2728d..87582a26e 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; -- cgit v1.2.3