diff options
author | nyamatongwe <unknown> | 2002-02-11 02:15:56 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-11 02:15:56 +0000 |
commit | 059b5ea7391a9879a96921b256a185165e8ab2db (patch) | |
tree | 8fccbc9b0127de0aa755ebbef0a78b4ca1609bad /src/DocumentAccessor.h | |
parent | 537e81b993a0118c5c51018f5697ae4f5c1cc3bc (diff) | |
download | scintilla-mirror-059b5ea7391a9879a96921b256a185165e8ab2db.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); |