diff options
author | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
commit | 32056de116bf65368ccff2e887d29fbf81075bed (patch) | |
tree | 493a0791cb7757d3e8397e242eef5c4f764a5aee /src/CallTip.cxx | |
parent | 8320a969df7367a3f62ea1c26929c7d03cda2549 (diff) | |
download | scintilla-mirror-32056de116bf65368ccff2e887d29fbf81075bed.tar.gz |
Removed platform-specific headers from Platform.h and thus stopped
visibility of these headers to most code.
Diffstat (limited to 'src/CallTip.cxx')
-rw-r--r-- | src/CallTip.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx index 3422de696..006e2cb51 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -21,11 +21,11 @@ CallTip::CallTip() { startHighlight = 0; endHighlight = 0; - colourBG.desired = Colour(0xff, 0xff, 0xff); - colourUnSel.desired = Colour(0x80, 0x80, 0x80); - colourSel.desired = Colour(0, 0, 0x80); - colourShade.desired = Colour(0, 0, 0); - colourLight.desired = Colour(0xc0, 0xc0, 0xc0); + colourBG.desired = ColourDesired(0xff, 0xff, 0xff); + colourUnSel.desired = ColourDesired(0x80, 0x80, 0x80); + colourSel.desired = ColourDesired(0, 0, 0x80); + colourShade.desired = ColourDesired(0, 0, 0); + colourLight.desired = ColourDesired(0xc0, 0xc0, 0xc0); } CallTip::~CallTip() { |