From 4b0b22d8970ed426e21f35665ff3008f9f7b7a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Torres?= Date: Sun, 1 May 2022 19:02:55 +0200 Subject: [PATCH] LibGfx: Fix typo in Color constructor --- Userland/Libraries/LibGfx/Color.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibGfx/Color.h b/Userland/Libraries/LibGfx/Color.h index 900e23f6b9..e4bc258c6d 100644 --- a/Userland/Libraries/LibGfx/Color.h +++ b/Userland/Libraries/LibGfx/Color.h @@ -399,8 +399,8 @@ public: } private: - constexpr explicit Color(ARGB32 rgba) - : m_value(rgba) + constexpr explicit Color(ARGB32 argb) + : m_value(argb) { }