diff options
author | nyamatongwe <unknown> | 2008-01-19 03:14:35 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2008-01-19 03:14:35 +0000 |
commit | 51cdae6cd9d680285cac796c07a147ef21c69afa (patch) | |
tree | 2bd0139c80bbc0eab413d008a653fc8f7de0e651 /src/RunStyles.h | |
parent | e46072a99ad74202cb2c7fd2173e0b52aa6074ba (diff) | |
download | scintilla-mirror-51cdae6cd9d680285cac796c07a147ef21c69afa.tar.gz |
Made som emethods const.
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r-- | src/RunStyles.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h index bbf20b262..f16421fd0 100644 --- a/src/RunStyles.h +++ b/src/RunStyles.h @@ -23,8 +23,8 @@ public: public: RunStyles(); ~RunStyles(); - int Length(); - int ValueAt(int position); + int Length() const; + int ValueAt(int position) const; int FindNextChange(int position, int end); int StartRun(int position); int EndRun(int position); |