diff options
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; |