aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RunStyles.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2008-01-19 03:14:35 +0000
committernyamatongwe <devnull@localhost>2008-01-19 03:14:35 +0000
commit541f13e28956050f2111c873dc7afeeaed981ef9 (patch)
tree2bd0139c80bbc0eab413d008a653fc8f7de0e651 /src/RunStyles.h
parent55a25ce56daec5128348ec882f773044dc9dfa86 (diff)
downloadscintilla-mirror-541f13e28956050f2111c873dc7afeeaed981ef9.tar.gz
Made som emethods const.
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r--src/RunStyles.h4
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);