aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-05-03 19:40:15 +1000
committerNeil <nyamatongwe@gmail.com>2020-05-03 19:40:15 +1000
commit60cd87963a771c22eda56365f4059c1fa117e3a3 (patch)
tree640b935cdb4b5587ee9b0c1de08f42560c0ba387 /src/CellBuffer.h
parent69db1ffbcab52381b4f6e04bb5cb64eeba838225 (diff)
downloadscintilla-mirror-60cd87963a771c22eda56365f4059c1fa117e3a3.tar.gz
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.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h
index 5138fd0aa..3e16bcdc8 100644
--- a/src/CellBuffer.h
+++ b/src/CellBuffer.h
@@ -16,6 +16,7 @@ public:
virtual ~PerLine() {}
virtual void Init()=0;
virtual void InsertLine(Sci::Line line)=0;
+ virtual void InsertLines(Sci::Line line, Sci::Line lines) = 0;
virtual void RemoveLine(Sci::Line line)=0;
};