diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-05-24 09:29:24 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-05-24 09:29:24 +1000 | 
| commit | aff335283c4ea47a38375ef6950ee2c285ddee70 (patch) | |
| tree | 75a325ff0bef9f0bf7c121774fd8067fb869ac6b /src/PositionCache.cxx | |
| parent | 524a5429eaae34e45769c39e44f1c7c10b1c5eff (diff) | |
| download | scintilla-mirror-aff335283c4ea47a38375ef6950ee2c285ddee70.tar.gz | |
Removing style byte indicators.
Diffstat (limited to 'src/PositionCache.cxx')
| -rw-r--r-- | src/PositionCache.cxx | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 2a120c1cf..e425ebe69 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -59,8 +59,6 @@ LineLayout::LineLayout(int maxLineLength_) :  	edgeColumn(0),  	chars(0),  	styles(0), -	styleBitsSet(0), -	indicators(0),  	positions(0),  	hsStart(0),  	hsEnd(0), @@ -81,7 +79,6 @@ void LineLayout::Resize(int maxLineLength_) {  		Free();  		chars = new char[maxLineLength_ + 1];  		styles = new unsigned char[maxLineLength_ + 1]; -		indicators = new char[maxLineLength_ + 1];  		// Extra position allocated as sometimes the Windows  		// GetTextExtentExPoint API writes an extra element.  		positions = new XYPOSITION[maxLineLength_ + 1 + 1]; @@ -94,8 +91,6 @@ void LineLayout::Free() {  	chars = 0;  	delete []styles;  	styles = 0; -	delete []indicators; -	indicators = 0;  	delete []positions;  	positions = 0;  	delete []lineStarts; | 
