summaryrefslogtreecommitdiff
path: root/examples/gfx/eventtest/eventtest.pas
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gfx/eventtest/eventtest.pas')
-rw-r--r--examples/gfx/eventtest/eventtest.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/gfx/eventtest/eventtest.pas b/examples/gfx/eventtest/eventtest.pas
index d870773d..aaf3e5dc 100644
--- a/examples/gfx/eventtest/eventtest.pas
+++ b/examples/gfx/eventtest/eventtest.pas
@@ -241,11 +241,11 @@ var
MainWindow: TMainWindow;
begin
- gApplication.Initialize;
+ GFApplication.Initialize;
MainWindow := TMainWindow.Create;
- gApplication.AddWindow(MainWindow);
+ GFApplication.AddWindow(MainWindow);
MainWindow.Show;
- gApplication.Run;
+ GFApplication.Run;
end.