summaryrefslogtreecommitdiff
path: root/examples/gfx/eventtest/eventtest.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@users.sourceforge.net>2006-11-20 07:55:29 +0000
committerGraeme Geldenhuys <graemeg@users.sourceforge.net>2006-11-20 07:55:29 +0000
commit1035e7b3b4aa37e3528495a3715888d2f8bcf4b2 (patch)
treee230dbecb027e4db75febe1dd9baa5693e0b9949 /examples/gfx/eventtest/eventtest.pas
parent2fc5755cea0a1572fff41f4df4e91ac5765e4a4e (diff)
downloadfpGUI-1035e7b3b4aa37e3528495a3715888d2f8bcf4b2.tar.xz
minor changes in copyright header.
Diffstat (limited to 'examples/gfx/eventtest/eventtest.pas')
-rw-r--r--examples/gfx/eventtest/eventtest.pas12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/gfx/eventtest/eventtest.pas b/examples/gfx/eventtest/eventtest.pas
index aaf3e5dc..8b371478 100644
--- a/examples/gfx/eventtest/eventtest.pas
+++ b/examples/gfx/eventtest/eventtest.pas
@@ -3,7 +3,7 @@
Event Test example
- Copyright (C) 2000 - 2006 See the file AUTHORS, included in this
+ Copyright (C) 2000 - 2006 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -17,10 +17,11 @@
program EventTest;
uses
- SysUtils,
- Classes,
- GFXBase,
- fpGFX;
+ SysUtils
+ ,Classes
+ ,GFXBase
+ ,fpGFX
+ ;
const
@@ -72,7 +73,6 @@ begin
OnPaint := @Paint;
OnMove := @Move;
OnResize := @Resize;
- Show;
end;