1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibGfx: Fix typo in Color constructor

This commit is contained in:
César Torres 2022-05-01 19:02:55 +02:00 committed by Andreas Kling
parent 8cbd25f553
commit 4b0b22d897

View file

@ -399,8 +399,8 @@ public:
}
private:
constexpr explicit Color(ARGB32 rgba)
: m_value(rgba)
constexpr explicit Color(ARGB32 argb)
: m_value(argb)
{
}