diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 18:34:06 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 18:34:06 +0200 |
commit | 7584480f628c878e107bf66770e988bedb8cd6c5 (patch) | |
tree | 29e922c758183698ccf7f7653f6a1174ac53a95b /Demos/PaintTest | |
parent | 70412c7d4f5f6f55bfb0cf9409463b19f27c632a (diff) | |
download | serenity-7584480f628c878e107bf66770e988bedb8cd6c5.zip |
LibGUI: Convert GWindow to ObjectPtr
Diffstat (limited to 'Demos/PaintTest')
-rw-r--r-- | Demos/PaintTest/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/PaintTest/main.cpp b/Demos/PaintTest/main.cpp index 971ae2ed60..3486c5f186 100644 --- a/Demos/PaintTest/main.cpp +++ b/Demos/PaintTest/main.cpp @@ -38,7 +38,7 @@ int main(int argc, char** argv) { GApplication app(argc, argv); - auto* window = new GWindow; + auto window = GWindow::construct(); window->set_rect(100, 100, 400, 400); window->set_title("Paint test"); |