diff options
Diffstat (limited to 'src/CellBuffer.cxx')
| -rw-r--r-- | src/CellBuffer.cxx | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index 064ef1a2a..de1605837 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -351,10 +351,7 @@ void CellBuffer::GetCharRange(char *buffer, int position, int lengthRetrieve) co  		                      lengthRetrieve, substance.Length());  		return;  	} - -	for (int i=0; i<lengthRetrieve; i++) { -		*buffer++ = substance.ValueAt(position + i); -	} +	substance.GetRange(buffer, position, lengthRetrieve);  }  char CellBuffer::StyleAt(int position) const { | 
