diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-22 08:18:01 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-22 08:18:01 +1000 |
commit | c8235ba0e0292f209a8233613669e2cff8de80da (patch) | |
tree | 117df121f92601300eeb2e9a047860384eb17d79 /src/CallTip.h | |
parent | 7f8a8cfb32aecb70fe10ef26fe096f4092f7e673 (diff) | |
download | scintilla-mirror-c8235ba0e0292f209a8233613669e2cff8de80da.tar.gz |
Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedef
will be published in externally visible header.
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 78518a995..998bdabf5 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -44,11 +44,11 @@ public: Window wDraw; bool inCallTipMode; Sci::Position posStartCallTip; - ColourAlpha colourBG; - ColourAlpha colourUnSel; - ColourAlpha colourSel; - ColourAlpha colourShade; - ColourAlpha colourLight; + ColourRGBA colourBG; + ColourRGBA colourUnSel; + ColourRGBA colourSel; + ColourRGBA colourShade; + ColourRGBA colourLight; int codePage; int clickPlace; @@ -91,7 +91,7 @@ public: bool UseStyleCallTip() const noexcept; // Modify foreground and background colours - void SetForeBack(const ColourAlpha &fore, const ColourAlpha &back) noexcept; + void SetForeBack(const ColourRGBA &fore, const ColourRGBA &back) noexcept; }; } |