diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-20 08:27:32 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-20 08:27:32 +1000 |
commit | c5b977db0bf02e06f69d0fd4ba2ce6fc1883553b (patch) | |
tree | 051cd8f710b87969897502ed7dcc533bf20b9655 /src/XPM.h | |
parent | a8fed0f50f5ef7540102b03975ac4c68bc737e66 (diff) | |
download | scintilla-mirror-c5b977db0bf02e06f69d0fd4ba2ce6fc1883553b.tar.gz |
Remove casts, drop default argument, use const.
Diffstat (limited to 'src/XPM.h')
-rw-r--r-- | src/XPM.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ public: float GetScaledWidth() const { return width / scale; } int CountBytes() const; const unsigned char *Pixels() const; - void SetPixel(int x, int y, ColourDesired colour, int alpha=0xff); + void SetPixel(int x, int y, ColourDesired colour, int alpha); }; /** |