diff options
author | nyamatongwe <unknown> | 2002-02-28 02:52:43 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-28 02:52:43 +0000 |
commit | 3307089950230f9b4fd52048e27d01280f81c247 (patch) | |
tree | d242ef9e669d0f88c10b3651444a1e4f6e223a94 /src/Document.h | |
parent | 63c9ec2b810f77f429972ab272f5d16404bc0625 (diff) | |
download | scintilla-mirror-3307089950230f9b4fd52048e27d01280f81c247.tar.gz |
Line layout cache feature added.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index 0d90d4c00..8affe294c 100644 --- a/src/Document.h +++ b/src/Document.h @@ -85,6 +85,7 @@ private: charClassification charClass[256]; char stylingMask; int endStyled; + int styleClock; int enteredCount; int enteredReadOnlyCount; @@ -195,6 +196,7 @@ public: void SetStyles(int length, char *styles); int GetEndStyled() { return endStyled; } bool EnsureStyledTo(int pos); + int GetStyleClock() { return styleClock; } int SetLineState(int line, int state) { return cb.SetLineState(line, state); } int GetLineState(int line) { return cb.GetLineState(line); } |