diff options
author | Tom <tomut@yahoo.com> | 2021-02-20 23:10:21 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-21 10:33:28 +0100 |
commit | 1c31bcb24e4b701be373f6dad567a554535fb492 (patch) | |
tree | a1ff1cc0f446e91966fd75ac37ba5028021deb0d /Userland/Libraries/LibGUI/Window.h | |
parent | 368fe0f7f80bfcb8a81ff2bde01d017f2ba26aae (diff) | |
download | serenity-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.h | 2 |
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; } |