diff options
Diffstat (limited to 'Userland/Services/Taskbar/main.cpp')
-rw-r--r-- | Userland/Services/Taskbar/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/Taskbar/main.cpp b/Userland/Services/Taskbar/main.cpp index f86c0a114b..02cc6a0af8 100644 --- a/Userland/Services/Taskbar/main.cpp +++ b/Userland/Services/Taskbar/main.cpp @@ -51,8 +51,8 @@ int main(int argc, char** argv) return 1; } - TaskbarWindow window; - window.show(); + auto window = TaskbarWindow::construct(); + window->show(); return app->exec(); } |