aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/XPM.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-01-04 13:32:23 +1100
committerNeil <nyamatongwe@gmail.com>2017-01-04 13:32:23 +1100
commit75de132ed9cd2b59d33e0a721bac285db2528949 (patch)
tree7b0d2050dffec113ec07637b575cd3075d269e44 /src/XPM.h
parentef94015d9934b956d23531e2d3bcc2cf3d36c820 (diff)
downloadscintilla-mirror-75de132ed9cd2b59d33e0a721bac285db2528949.tar.gz
Mark some const methods as const.
Diffstat (limited to 'src/XPM.h')
-rw-r--r--src/XPM.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/XPM.h b/src/XPM.h
index 631fe1386..b7b19014e 100644
--- a/src/XPM.h
+++ b/src/XPM.h
@@ -23,7 +23,7 @@ class XPM {
ColourDesired colourCodeTable[256];
char codeTransparent;
ColourDesired ColourFromCode(int ch) const;
- void FillRun(Surface *surface, int code, int startX, int y, int x);
+ void FillRun(Surface *surface, int code, int startX, int y, int x) const;
public:
explicit XPM(const char *textForm);
explicit XPM(const char *const *linesForm);