aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/Accessor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-05-24 00:04:54 +1000
committernyamatongwe <devnull@localhost>2013-05-24 00:04:54 +1000
commit44da106995e3b3ca4068f584c16f59d8fced4e69 (patch)
tree72512a72ac08ef47a2f40d9b30b0f208a245fda0 /lexlib/Accessor.h
parent2345e207b44f01e09d8dba69a37b9a67eeefa884 (diff)
downloadscintilla-mirror-44da106995e3b3ca4068f584c16f59d8fced4e69.tar.gz
Made methods const where they can be and are logically const as well.
Diffstat (limited to 'lexlib/Accessor.h')
-rw-r--r--lexlib/Accessor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/Accessor.h b/lexlib/Accessor.h
index 2f28c1acd..9789f2b4a 100644
--- a/lexlib/Accessor.h
+++ b/lexlib/Accessor.h
@@ -24,7 +24,7 @@ class Accessor : public LexAccessor {
public:
PropSetSimple *pprops;
Accessor(IDocument *pAccess_, PropSetSimple *pprops_);
- int GetPropertyInt(const char *, int defaultValue=0);
+ int GetPropertyInt(const char *, int defaultValue=0) const;
int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
};