aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-06-10 10:54:57 +0000
committernyamatongwe <devnull@localhost>2009-06-10 10:54:57 +0000
commit8b064ce4521a34da81beefe5c7b7743825a90b45 (patch)
tree36aad6126ec7825e48a4387c1dae29bbd53ec86c /src/CellBuffer.h
parent1dbec24d4f23053d0efa1c10ebb7fcafacea5ca4 (diff)
downloadscintilla-mirror-8b064ce4521a34da81beefe5c7b7743825a90b45.tar.gz
Clear out per-line data when all contents removed.
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 5af135736..336dfb4df 100644
--- a/src/CellBuffer.h
+++ b/src/CellBuffer.h
@@ -16,6 +16,7 @@ namespace Scintilla {
class PerLine {
public:
virtual ~PerLine() {}
+ virtual void Init()=0;
virtual void InsertLine(int)=0;
virtual void RemoveLine(int)=0;
};