aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-05-05 23:37:40 +0000
committernyamatongwe <devnull@localhost>2010-05-05 23:37:40 +0000
commit68a51b24951be7fecaa63552c7e6c7045961a7fb (patch)
tree629b96f05545c3876700d249d9cfe93b59e5344d /src/CellBuffer.h
parent0df3de7c7a9c0f22099195dfb2515750ef09ef23 (diff)
downloadscintilla-mirror-68a51b24951be7fecaa63552c7e6c7045961a7fb.tar.gz
Made some methods const.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h
index a94a9dc38..78f586e76 100644
--- a/src/CellBuffer.h
+++ b/src/CellBuffer.h
@@ -149,8 +149,8 @@ public:
/// Retrieving positions outside the range of the buffer works and returns 0
char CharAt(int position) const;
- void GetCharRange(char *buffer, int position, int lengthRetrieve);
- char StyleAt(int position);
+ void GetCharRange(char *buffer, int position, int lengthRetrieve) const;
+ char StyleAt(int position) const;
const char *BufferPointer();
int Length() const;