diff options
author | nyamatongwe <unknown> | 2012-05-26 15:15:07 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-05-26 15:15:07 +1000 |
commit | 00c771cecda620db28cec9e4c50830f542e3a829 (patch) | |
tree | b14ac398aa30f650cf9c38fd43407d13e32384e8 /src/CellBuffer.h | |
parent | 0af9eecdbfe8e8260ef67316e7208e1385715c73 (diff) | |
download | scintilla-mirror-00c771cecda620db28cec9e4c50830f542e3a829.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); |