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 /Applications/Calculator | |
parent | 70412c7d4f5f6f55bfb0cf9409463b19f27c632a (diff) | |
download | serenity-7584480f628c878e107bf66770e988bedb8cd6c5.zip |
LibGUI: Convert GWindow to ObjectPtr
Diffstat (limited to 'Applications/Calculator')
-rw-r--r-- | Applications/Calculator/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Calculator/main.cpp b/Applications/Calculator/main.cpp index 082dacb9e8..9e7208a293 100644 --- a/Applications/Calculator/main.cpp +++ b/Applications/Calculator/main.cpp @@ -6,7 +6,7 @@ int main(int argc, char** argv) { GApplication app(argc, argv); - auto* window = new GWindow; + auto window = GWindow::construct(); window->set_title("Calculator"); window->set_resizable(false); window->set_rect({ 300, 200, 254, 213 }); |