summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Window.h
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2021-02-20 23:10:21 -0700
committerAndreas Kling <kling@serenityos.org>2021-02-21 10:33:28 +0100
commit1c31bcb24e4b701be373f6dad567a554535fb492 (patch)
treea1ff1cc0f446e91966fd75ac37ba5028021deb0d /Userland/Libraries/LibGUI/Window.h
parent368fe0f7f80bfcb8a81ff2bde01d017f2ba26aae (diff)
downloadserenity-1c31bcb24e4b701be373f6dad567a554535fb492.zip
WindowServer: Allow changing frameless state after a window is created
Diffstat (limited to 'Userland/Libraries/LibGUI/Window.h')
-rw-r--r--Userland/Libraries/LibGUI/Window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/Window.h b/Userland/Libraries/LibGUI/Window.h
index 50843e5d78..516a07b100 100644
--- a/Userland/Libraries/LibGUI/Window.h
+++ b/Userland/Libraries/LibGUI/Window.h
@@ -58,7 +58,7 @@ public:
bool is_maximized() const;
bool is_frameless() const { return m_frameless; }
- void set_frameless(bool frameless) { m_frameless = frameless; }
+ void set_frameless(bool);
bool is_resizable() const { return m_resizable; }
void set_resizable(bool resizable) { m_resizable = resizable; }