mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
LibGfx: Fix typo in Color constructor
This commit is contained in:
parent
8cbd25f553
commit
4b0b22d897
Notes:
sideshowbarker
2024-07-19 17:05:42 +09:00
Author: https://github.com/ngc6302h 🔰 Commit: https://github.com/SerenityOS/serenity/commit/4b0b22d8970 Pull-request: https://github.com/SerenityOS/serenity/pull/13872 Reviewed-by: https://github.com/gmta ✅
1 changed files with 2 additions and 2 deletions
|
@ -399,8 +399,8 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
constexpr explicit Color(ARGB32 rgba)
|
||||
: m_value(rgba)
|
||||
constexpr explicit Color(ARGB32 argb)
|
||||
: m_value(argb)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue