summaryrefslogtreecommitdiff
path: root/examples/corelib/helloworld/helloworld.pas
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-10-01 15:11:44 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-10-01 15:11:44 +0000
commit62d36211682ba17dd0d618a4f3aee2e42ca72767 (patch)
tree30729241fe2c1a67388100b096805e0b015380f5 /examples/corelib/helloworld/helloworld.pas
parent9bc7fd4fff51fa7f25414cdebe01e8dff75b9617 (diff)
downloadfpGUI-62d36211682ba17dd0d618a4f3aee2e42ca72767.tar.xz
* Updated all demos to use the new unit names.
* Updated all packages like ide addons, fpcunit etc to use the new unit names.
Diffstat (limited to 'examples/corelib/helloworld/helloworld.pas')
-rw-r--r--examples/corelib/helloworld/helloworld.pas16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/corelib/helloworld/helloworld.pas b/examples/corelib/helloworld/helloworld.pas
index ef8eee98..be6b99c3 100644
--- a/examples/corelib/helloworld/helloworld.pas
+++ b/examples/corelib/helloworld/helloworld.pas
@@ -1,9 +1,7 @@
{
- fpGUI - Free Pascal GUI Library
+ fpGUI - Free Pascal GUI Toolkit
- HelloWorld - GFX Hello World application
-
- Copyright (C) 2007 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2008 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -12,6 +10,9 @@
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ Description:
+ A simple hello world application that only uses canvas painting.
}
program HelloWorld;
@@ -19,10 +20,9 @@ program HelloWorld;
{$mode objfpc}{$H+}
uses
- Classes
- ,fpGFX
- ,GFXBase
- , fpgui_toolkit;
+ Classes,
+ fpg_base,
+ fpg_main;
const
HelloWorldString: String = 'Hello, world!';