diff options
author | nyamatongwe <unknown> | 2009-07-03 05:48:47 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-07-03 05:48:47 +0000 |
commit | 43deaf5e127a3bb92e1e2c72fa9cd8f8233578a9 (patch) | |
tree | f88ba56f27bd5111e0b9c9aaf12426f33dc992d5 /src/PositionCache.h | |
parent | 2c6815995a898438dd58aaa05af9261fc8b85da6 (diff) | |
download | scintilla-mirror-43deaf5e127a3bb92e1e2c72fa9cd8f8233578a9.tar.gz |
Discontiguoues selection and virtual space initial commit.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 6c4c62efd..bd984d40b 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -2,7 +2,7 @@ /** @file PositionCache.h ** Classes for caching layout information. **/ -// Copyright 1998-2007 by Neil Hodgson <neilh@scintilla.org> +// Copyright 1998-2009 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef POSITIONCACHE_H @@ -30,11 +30,11 @@ public: enum { wrapWidthInfinite = 0x7ffffff }; int maxLineLength; int numCharsInLine; + int numCharsBeforeEOL; enum validLevel { llInvalid, llCheckTextAndStyle, llPositions, llLines } validity; int xHighlightGuide; bool highlightColumn; - int selStart; - int selEnd; + Selection *psel; bool containsCaret; int edgeColumn; char *chars; |