diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-05-08 00:56:45 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-05-08 00:56:45 +0200 |
commit | f08de5e4832735bfefe56438325c67e3b0f123dc (patch) | |
tree | 1a2ea51dac9cd82b35026319711633f0dc71cf2c /src/gui | |
parent | 0f385bfb5db0ba6e020add7b6bc18cb5a50dfeac (diff) | |
download | fpGUI-f08de5e4832735bfefe56438325c67e3b0f123dc.tar.xz |
added comments and fixed spelling mistakes in comments.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/fpg_style_win2k.pas | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/gui/fpg_style_win2k.pas b/src/gui/fpg_style_win2k.pas index 70ae4e0f..7ed12dd7 100644 --- a/src/gui/fpg_style_win2k.pas +++ b/src/gui/fpg_style_win2k.pas @@ -1,4 +1,21 @@ -unit fpg_style_win2k; +{ + fpGUI - Free Pascal GUI Toolkit + + Copyright (C) 2006 - 2011 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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: + Implements the Windows 2000 look. Simple and functional without + distractions. +} +unit fpg_style_win2k; {$mode objfpc}{$H+} @@ -10,6 +27,7 @@ uses ; type + TfpgWin2000Style = class(TfpgStyle) end; |