aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LineMarker.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-10-05 01:53:22 +0000
committernyamatongwe <devnull@localhost>2002-10-05 01:53:22 +0000
commit4d7fc4bcd31f2c81b0c22c424e06f0d63de167c5 (patch)
treeeeb1624ee1c4e156affd6d36bb2f5bd43502849c /src/LineMarker.h
parentcd9577c2dc245f5f6ca33ee76437e317e416f4f1 (diff)
downloadscintilla-mirror-4d7fc4bcd31f2c81b0c22c424e06f0d63de167c5.tar.gz
Fixed compiler warnings.
Diffstat (limited to 'src/LineMarker.h')
-rw-r--r--src/LineMarker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LineMarker.h b/src/LineMarker.h
index 50194d65c..0ac4d3155 100644
--- a/src/LineMarker.h
+++ b/src/LineMarker.h
@@ -17,8 +17,8 @@ class XPM {
char *codes;
ColourPair *colours;
void Init(const char * const *linesForm);
- ColourAllocated ColourFromCode(char ch);
- void FillRun(Surface *surface, char code, int startX, int y, int x);
+ ColourAllocated ColourFromCode(int ch);
+ void FillRun(Surface *surface, int code, int startX, int y, int x);
public:
XPM(const char *textForm);
XPM(const char * const *linesForm);