diff options
author | Neil <nyamatongwe@gmail.com> | 2021-04-25 09:52:20 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-04-25 09:52:20 +1000 |
commit | 81f7847af4cc9f51f02ab191c73f394c457518bd (patch) | |
tree | ef214ea786c00e9618756c26b99299ac1fa58bf6 /src/CallTip.h | |
parent | 241f33a38ca0887d1a47399de1bcf7ba0d544c41 (diff) | |
download | scintilla-mirror-81f7847af4cc9f51f02ab191c73f394c457518bd.tar.gz |
Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.
Change ColourDesired to ColourAlpha in styles.
Remove ColourDesired.
Diffstat (limited to 'src/CallTip.h')
-rw-r--r-- | src/CallTip.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/CallTip.h b/src/CallTip.h index f1358a94a..78518a995 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -44,11 +44,11 @@ public: Window wDraw; bool inCallTipMode; Sci::Position posStartCallTip; - ColourDesired colourBG; - ColourDesired colourUnSel; - ColourDesired colourSel; - ColourDesired colourShade; - ColourDesired colourLight; + ColourAlpha colourBG; + ColourAlpha colourUnSel; + ColourAlpha colourSel; + ColourAlpha colourShade; + ColourAlpha colourLight; int codePage; int clickPlace; @@ -91,7 +91,7 @@ public: bool UseStyleCallTip() const noexcept; // Modify foreground and background colours - void SetForeBack(const ColourDesired &fore, const ColourDesired &back) noexcept; + void SetForeBack(const ColourAlpha &fore, const ColourAlpha &back) noexcept; }; } |