diff options
author | nyamatongwe <devnull@localhost> | 2012-05-26 15:15:07 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-05-26 15:15:07 +1000 |
commit | 1596a6d6b4540980cd6a8249460d881d6d190c1f (patch) | |
tree | 498aeab1fe1cf973892c069753d8d06ea5420785 /src/CellBuffer.h | |
parent | 25e91c5a5870ea1138684dbd2d67888bccce5876 (diff) | |
download | scintilla-mirror-1596a6d6b4540980cd6a8249460d881d6d190c1f.tar.gz |
Add GetRangePointer and GetGapPosition methods.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index a82a3973b..388b9027b 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -157,6 +157,8 @@ public: char StyleAt(int position) const; void GetStyleRange(unsigned char *buffer, int position, int lengthRetrieve) const; const char *BufferPointer(); + const char *RangePointer(int position, int rangeLength); + int GapPosition() const; int Length() const; void Allocate(int newSize); |