diff options
| author | nyamatongwe <devnull@localhost> | 2009-07-03 05:48:47 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2009-07-03 05:48:47 +0000 | 
| commit | ec1bb377e03fe38cdb9a10e387cb8eae408afa8f (patch) | |
| tree | f88ba56f27bd5111e0b9c9aaf12426f33dc992d5 /src/PositionCache.h | |
| parent | 32f0b5c04976e2b24ab4d3e6adc7b438be44b90a (diff) | |
| download | scintilla-mirror-ec1bb377e03fe38cdb9a10e387cb8eae408afa8f.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; | 
