diff options
author | crupest <crupest@outlook.com> | 2021-11-21 15:18:28 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-11-21 15:18:28 +0800 |
commit | eeb1f55d5a483720441c3f44e83d02cc882a3bc0 (patch) | |
tree | e8d8a49d26602ac3f8097aa4d2fff65d70bbfba5 /src/ui/controls/Window.cpp | |
parent | 2b28ec296fdc72050569b9fedc1664ada7791497 (diff) | |
download | cru-eeb1f55d5a483720441c3f44e83d02cc882a3bc0.tar.gz cru-eeb1f55d5a483720441c3f44e83d02cc882a3bc0.tar.bz2 cru-eeb1f55d5a483720441c3f44e83d02cc882a3bc0.zip |
...
Diffstat (limited to 'src/ui/controls/Window.cpp')
-rw-r--r-- | src/ui/controls/Window.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/controls/Window.cpp b/src/ui/controls/Window.cpp index 00fab8e9..76203f22 100644 --- a/src/ui/controls/Window.cpp +++ b/src/ui/controls/Window.cpp @@ -12,8 +12,7 @@ Window* Window::Create(Control* attached_control) { return new Window(attached_control); } -Window::Window(Control* attached_control) - : RootControl(attached_control, host::CreateWindowParams{}) {} +Window::Window(Control* attached_control) : RootControl(attached_control) {} Window::~Window() {} } // namespace cru::ui::controls |