From 534d27693c3340e72af349639cd07a5268d9e4ef Mon Sep 17 00:00:00 2001 From: joshua stein Date: Thu, 30 Jan 2020 19:28:48 -0600 Subject: [PATCH] LibGUI: Remove unused m_layout_dirty --- Libraries/LibGUI/GWidget.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibGUI/GWidget.h b/Libraries/LibGUI/GWidget.h index adb737b69e16b7..7b0ea23791c213 100644 --- a/Libraries/LibGUI/GWidget.h +++ b/Libraries/LibGUI/GWidget.h @@ -332,7 +332,6 @@ class Widget : public Core::Object { bool m_visible { true }; bool m_greedy_for_hits { false }; bool m_enabled { true }; - bool m_layout_dirty { false }; bool m_updates_enabled { true }; NonnullRefPtr m_palette;