diff options
Diffstat (limited to 'scintilla/src/LineMarker.h')
-rw-r--r-- | scintilla/src/LineMarker.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scintilla/src/LineMarker.h b/scintilla/src/LineMarker.h index 2e28090..8607959 100644 --- a/scintilla/src/LineMarker.h +++ b/scintilla/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);
|