diff options
author | nyamatongwe <unknown> | 2011-09-25 09:50:39 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-09-25 09:50:39 +1000 |
commit | 6a7cac4480d15c5737fd5c25a4b0fa3c937d935b (patch) | |
tree | 0a95db5373d804a228fe69360c433ce790ed564c /src/LineMarker.h | |
parent | b1fc4c2cd37d6ea015a016aa80514de1355b4664 (diff) | |
download | scintilla-mirror-6a7cac4480d15c5737fd5c25a4b0fa3c937d935b.tar.gz |
Palette support removed.
Diffstat (limited to 'src/LineMarker.h')
-rw-r--r-- | src/LineMarker.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/LineMarker.h b/src/LineMarker.h index 6477a1ffe..ccf410414 100644 --- a/src/LineMarker.h +++ b/src/LineMarker.h @@ -20,9 +20,9 @@ public: enum typeOfFold { undefined, head, body, tail, headWithTail }; int markType; - ColourPair fore; - ColourPair back; - ColourPair backSelected; + ColourDesired fore; + ColourDesired back; + ColourDesired backSelected; int alpha; XPM *pxpm; RGBAImage *image; @@ -62,7 +62,6 @@ public: image = NULL; return *this; } - void RefreshColourPalette(Palette &pal, bool want); void SetXPM(const char *textForm); void SetXPM(const char *const *linesForm); void SetRGBAImage(Point sizeRGBAImage, const unsigned char *pixelsRGBAImage); |