From d924d93fa298172a61711382ed75153677f1b241 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 16 Jun 2021 17:13:04 +0200 Subject: [PATCH] WindowServer: Fix unnecessary local variable shadowing in WindowFrame --- Userland/Services/WindowServer/WindowFrame.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Userland/Services/WindowServer/WindowFrame.cpp b/Userland/Services/WindowServer/WindowFrame.cpp index cd3c8b70a5..5e71731a96 100644 --- a/Userland/Services/WindowServer/WindowFrame.cpp +++ b/Userland/Services/WindowServer/WindowFrame.cpp @@ -65,11 +65,13 @@ static Gfx::IntRect frame_rect_for_window(Window& window, const Gfx::IntRect& re WindowFrame::WindowFrame(Window& window) : m_window(window) { - auto button = make