summaryrefslogtreecommitdiff
path: root/Games/Snake
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-21 18:34:06 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-21 18:34:06 +0200
commit7584480f628c878e107bf66770e988bedb8cd6c5 (patch)
tree29e922c758183698ccf7f7653f6a1174ac53a95b /Games/Snake
parent70412c7d4f5f6f55bfb0cf9409463b19f27c632a (diff)
downloadserenity-7584480f628c878e107bf66770e988bedb8cd6c5.zip
LibGUI: Convert GWindow to ObjectPtr
Diffstat (limited to 'Games/Snake')
-rw-r--r--Games/Snake/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Games/Snake/main.cpp b/Games/Snake/main.cpp
index 9a98c9ba29..e8df14fd36 100644
--- a/Games/Snake/main.cpp
+++ b/Games/Snake/main.cpp
@@ -12,7 +12,7 @@ int main(int argc, char** argv)
{
GApplication app(argc, argv);
- auto* window = new GWindow;
+ auto window = GWindow::construct();
window->set_double_buffering_enabled(false);
window->set_title("Snake");