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/ScintillaBase.cxx | |
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/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index f938a1f4d..4863dbcb7 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -517,7 +517,7 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara break; case SCI_CALLTIPSETBACK: - ct.colourBG = Colour(wParam); + ct.colourBG = ColourDesired(wParam); InvalidateStyleRedraw(); break; |