diff options
author | nyamatongwe <unknown> | 2001-10-28 01:28:28 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-10-28 01:28:28 +0000 |
commit | 19b8b95e52c0c98566819492a6a5bb829314cec9 (patch) | |
tree | 493a0791cb7757d3e8397e242eef5c4f764a5aee /src/LineMarker.h | |
parent | 83ec763aff39f7dd7dbd80954335e1841d061601 (diff) | |
download | scintilla-mirror-19b8b95e52c0c98566819492a6a5bb829314cec9.tar.gz |
Removed platform-specific headers from Platform.h and thus stopped
visibility of these headers to most code.
Diffstat (limited to 'src/LineMarker.h')
-rw-r--r-- | src/LineMarker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LineMarker.h b/src/LineMarker.h index b9dd15d06..7897aa775 100644 --- a/src/LineMarker.h +++ b/src/LineMarker.h @@ -17,8 +17,8 @@ public: ColourPair back; LineMarker() { markType = SC_MARK_CIRCLE; - fore = Colour(0,0,0); - back = Colour(0xff,0xff,0xff); + fore = ColourDesired(0,0,0); + back = ColourDesired(0xff,0xff,0xff); } void Draw(Surface *surface, PRectangle &rc, Font &fontForCharacter); }; |