diff options
author | nyamatongwe <devnull@localhost> | 2002-02-11 02:15:56 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-11 02:15:56 +0000 |
commit | bc4593ab2fd07b59d3709d36ec951d3fbf0e44ff (patch) | |
tree | 8fccbc9b0127de0aa755ebbef0a78b4ca1609bad /src/DocumentAccessor.h | |
parent | 58a3f8eee17d6d083c09822ea83719980fbb2b3e (diff) | |
download | scintilla-mirror-bc4593ab2fd07b59d3709d36ec951d3fbf0e44ff.tar.gz |
Changes to tighten up styling beyond the bounds of the document.
May not be permanent.
Diffstat (limited to 'src/DocumentAccessor.h')
-rw-r--r-- | src/DocumentAccessor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DocumentAccessor.h b/src/DocumentAccessor.h index 48742a9b4..5b68dd15c 100644 --- a/src/DocumentAccessor.h +++ b/src/DocumentAccessor.h @@ -26,6 +26,7 @@ protected: char chFlags; char chWhile; unsigned int startSeg; + int startPosStyling; bool InternalIsLeadByte(char ch); void Fill(int position); @@ -33,7 +34,8 @@ protected: public: DocumentAccessor(Document *pdoc_, PropSet &props_, WindowID id_=0) : Accessor(), pdoc(pdoc_), props(props_), id(id_), - lenDoc(-1), validLen(0), chFlags(0), chWhile(0) { + lenDoc(-1), validLen(0), chFlags(0), chWhile(0), + startSeg(0), startPosStyling(0) { } ~DocumentAccessor(); char StyleAt(int position); |