From 920c072f0eef31db8263cb423f1134e47c1c5b46 Mon Sep 17 00:00:00 2001 From: juha Date: Sat, 18 Jun 2016 16:40:04 +0000 Subject: [PATCH] LazUtils: Add, fix and unify header comments of many units. git-svn-id: trunk@52518 - --- .../lazutils/asiancodepagefunctions.inc | 8 ++--- components/lazutils/asiancodepages.inc | 9 +++--- components/lazutils/avglvltree.pas | 2 +- components/lazutils/easylazfreetype.pas | 32 ++++++++++++------- components/lazutils/fileutil.pas | 8 +---- components/lazutils/fpcadds.pas | 8 +---- components/lazutils/laz2_dom.pas | 8 ++--- components/lazutils/laz2_names.inc | 3 +- components/lazutils/laz2_xmlcfg.pas | 6 ++-- components/lazutils/laz2_xmlread.pas | 8 ++--- components/lazutils/laz2_xmlutils.pas | 3 +- components/lazutils/laz2_xmlwrite.pas | 3 +- components/lazutils/laz2_xpath.pas | 3 +- components/lazutils/laz_dom.pas | 11 +++++++ components/lazutils/laz_xmlcfg.pas | 5 +-- components/lazutils/laz_xmlread.pas | 11 +++++++ components/lazutils/laz_xmlstreaming.pas | 7 ++-- components/lazutils/laz_xmlwrite.pas | 11 +++++++ components/lazutils/lazclasses.pas | 8 +++++ components/lazutils/lazcollections.pas | 8 +++++ components/lazutils/lazconfigstorage.pas | 2 ++ components/lazutils/lazdbglog.pas | 8 +++++ components/lazutils/lazfglhash.pas | 8 +++++ components/lazutils/lazfilecache.pas | 8 +++++ components/lazutils/lazfileutils.pas | 6 ++++ .../lazutils/lazfreetypefontcollection.pas | 8 +++++ .../lazutils/lazfreetypefpimagedrawer.pas | 8 +++++ components/lazutils/lazlistclasses.pas | 12 ++----- components/lazutils/lazlogger.pas | 9 ++++++ components/lazutils/lazloggerbase.pas | 9 ++++++ components/lazutils/lazloggerdummy.pas | 8 +++++ components/lazutils/lazloggerprofiling.pas | 8 +++++ components/lazutils/lazmethodlist.pas | 8 +++++ components/lazutils/lazutf16.pas | 11 ++----- components/lazutils/lazutf8classes.pas | 8 +++++ components/lazutils/lazutf8sysutils.pas | 8 +++++ components/lazutils/lazutilities.pas | 8 +++++ components/lazutils/lazutilsstrconsts.pas | 12 ++----- components/lazutils/lconvencoding.pas | 2 +- components/lazutils/lcsvutils.pas | 8 +++++ components/lazutils/lookupstringlist.pas | 2 +- components/lazutils/masks.pas | 8 +---- components/lazutils/paswstring.pas | 11 +++---- components/lazutils/ttcache.pas | 11 ------- components/lazutils/utf8process.pp | 12 ++----- components/lazutils/winlazfileutils.inc | 2 -- 46 files changed, 245 insertions(+), 122 deletions(-) diff --git a/components/lazutils/asiancodepagefunctions.inc b/components/lazutils/asiancodepagefunctions.inc index 878f07fcbe..b10b31a71c 100644 --- a/components/lazutils/asiancodepagefunctions.inc +++ b/components/lazutils/asiancodepagefunctions.inc @@ -1,16 +1,14 @@ {%MainUnit ../lconvencoding.pp} -{****************************************************************************** - Asian Unicode Functions - ****************************************************************************** - +{ ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + Asian Unicode Functions. The clipboard is able to work with the windows and gtk behaviour/features. } diff --git a/components/lazutils/asiancodepages.inc b/components/lazutils/asiancodepages.inc index a52f24f274..aca55175c8 100644 --- a/components/lazutils/asiancodepages.inc +++ b/components/lazutils/asiancodepages.inc @@ -1,15 +1,14 @@ {%MainUnit ../lconvencoding.pp} -{****************************************************************************** - Asian Unicode Conversion Tables - ****************************************************************************** - +{ ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + + Asian Unicode Conversion Tables } type CP936Arr = array[0..22046] of word; diff --git a/components/lazutils/avglvltree.pas b/components/lazutils/avglvltree.pas index 85695b14d6..a49f3528a8 100644 --- a/components/lazutils/avglvltree.pas +++ b/components/lazutils/avglvltree.pas @@ -1,6 +1,6 @@ { ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/easylazfreetype.pas b/components/lazutils/easylazfreetype.pas index 85d61a23b5..33b7b52b75 100644 --- a/components/lazutils/easylazfreetype.pas +++ b/components/lazutils/easylazfreetype.pas @@ -1,17 +1,25 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** + + Bug list : + + - Characters parts may not be well translated, for example i with accent. + - Encoding is ok for ASCII but is mixed up for extended characters + + to do : + + - multiple font loading + - font face cache + - font style + - text rotation +} unit EasyLazFreeType; -{ bug list : - -- Characters parts may not be well translated, for example i with accent. -- Encoding is ok for ASCII but is mixed up for extended characters - -to do : - -- multiple font loading -- font face cache -- font style -- text rotation } - {$mode objfpc}{$H+} interface diff --git a/components/lazutils/fileutil.pas b/components/lazutils/fileutil.pas index c327fed936..69b6c467d3 100644 --- a/components/lazutils/fileutil.pas +++ b/components/lazutils/fileutil.pas @@ -1,12 +1,6 @@ { - /*************************************************************************** - fileutil.pas - ------------ - - ***************************************************************************/ - ***************************************************************************** - This file is part of the LazUtils package. + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/fpcadds.pas b/components/lazutils/fpcadds.pas index 330def8b15..2190ec0719 100644 --- a/components/lazutils/fpcadds.pas +++ b/components/lazutils/fpcadds.pas @@ -1,12 +1,6 @@ { - /*************************************************************************** - FPCAdds.pas - ----------- - - ***************************************************************************/ - ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_dom.pas b/components/lazutils/laz2_dom.pas index ec1db53fd2..9f141dfced 100644 --- a/components/lazutils/laz2_dom.pas +++ b/components/lazutils/laz2_dom.pas @@ -1,10 +1,8 @@ -{ - This file is based on the FCL unit dom svn revision 15251. - Converted to use UTF8 instead of widestrings by Mattias Gaertner. -} { ********************************************************************** - This file is part of the Free Component Library + This file is part of LazUtils. + It is copied from FCL unit dom svn revision 15251 and adapted to use + UTF8 instead of widestrings by Mattias Gaertner. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_names.inc b/components/lazutils/laz2_names.inc index acf4702526..f9aa7049d0 100644 --- a/components/lazutils/laz2_names.inc +++ b/components/lazutils/laz2_names.inc @@ -1,6 +1,7 @@ { ********************************************************************** - This file is part of the Free Component Library + This file is part of LazUtils. + It is copied and modified from a file in Free Component Library. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_xmlcfg.pas b/components/lazutils/laz2_xmlcfg.pas index b33e60bc70..5263f5daae 100644 --- a/components/lazutils/laz2_xmlcfg.pas +++ b/components/lazutils/laz2_xmlcfg.pas @@ -1,6 +1,8 @@ { - This file was part of the Free Component Library and was adapted to use UTF8 - strings instead of widestrings. + ********************************************************************** + This file is part of LazUtils. + It is copied from Free Component Library and adapted to use + UTF8 strings instead of widestrings. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_xmlread.pas b/components/lazutils/laz2_xmlread.pas index e8ac2c0aca..ac2606c8f1 100644 --- a/components/lazutils/laz2_xmlread.pas +++ b/components/lazutils/laz2_xmlread.pas @@ -1,10 +1,8 @@ -{ - This file is based on the FCL unit xmlread svn revision 15251. - Converted to use UTF8 instead of widestrings by Mattias Gaertner. -} { ********************************************************************** - This file is part of the Free Component Library + This file is part of LazUtils. + It is copied from FCL unit xmlread svn revision 15251 and adapted to use + UTF8 instead of widestrings by Mattias Gaertner. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_xmlutils.pas b/components/lazutils/laz2_xmlutils.pas index 22f245bcd7..253e479877 100644 --- a/components/lazutils/laz2_xmlutils.pas +++ b/components/lazutils/laz2_xmlutils.pas @@ -1,6 +1,7 @@ { ********************************************************************** - This file is part of the Free Component Library + This file is part of LazUtils. + It is copied and modified from a file in Free Component Library. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_xmlwrite.pas b/components/lazutils/laz2_xmlwrite.pas index a5147576a3..ba0253a91f 100644 --- a/components/lazutils/laz2_xmlwrite.pas +++ b/components/lazutils/laz2_xmlwrite.pas @@ -1,6 +1,7 @@ { ********************************************************************** - This file is based on the FCL unit xmlwrite svn revision 15251. + This file is part of LazUtils. + It is based on the FCL unit xmlwrite svn revision 15251. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz2_xpath.pas b/components/lazutils/laz2_xpath.pas index 788974cdb9..9be2fc8f49 100644 --- a/components/lazutils/laz2_xpath.pas +++ b/components/lazutils/laz2_xpath.pas @@ -1,6 +1,7 @@ { ********************************************************************** - This file is based on the xpath unit of the Free Component Library. + This file is part of LazUtils. + It is based on the xpath unit of the Free Component Library. See the file COPYING.FPC, included in this distribution, for details about the license. diff --git a/components/lazutils/laz_dom.pas b/components/lazutils/laz_dom.pas index 67cdd8671b..72d083b1a4 100644 --- a/components/lazutils/laz_dom.pas +++ b/components/lazutils/laz_dom.pas @@ -1,3 +1,14 @@ +{ + ********************************************************************** + This file is part of LazUtils. + It is copied from Free Component Library. + + See the file COPYING.FPC, included in this distribution, + for details about the license. + ********************************************************************** + +} + unit Laz_DOM; {$MODE objfpc}{$H+} diff --git a/components/lazutils/laz_xmlcfg.pas b/components/lazutils/laz_xmlcfg.pas index bc4482e1ce..afa79fe879 100644 --- a/components/lazutils/laz_xmlcfg.pas +++ b/components/lazutils/laz_xmlcfg.pas @@ -1,7 +1,8 @@ { ********************************************************************** - This file was part of the Free Component Library and was adapted to use UTF8 - strings instead of widestrings. + This file is part of LazUtils. + It is copied from Free Component Library and was adapted to use + UTF8 strings instead of widestrings. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/laz_xmlread.pas b/components/lazutils/laz_xmlread.pas index e2a0ce72d5..4ce3feb0d8 100644 --- a/components/lazutils/laz_xmlread.pas +++ b/components/lazutils/laz_xmlread.pas @@ -1,3 +1,14 @@ +{ + ********************************************************************** + This file is part of LazUtils. + It is copied from Free Component Library. + + See the file COPYING.FPC, included in this distribution, + for details about the license. + ********************************************************************** + +} + unit Laz_XMLRead; {$MODE objfpc}{$H+} diff --git a/components/lazutils/laz_xmlstreaming.pas b/components/lazutils/laz_xmlstreaming.pas index bd4cde23ad..62d9895d79 100644 --- a/components/lazutils/laz_xmlstreaming.pas +++ b/components/lazutils/laz_xmlstreaming.pas @@ -1,9 +1,10 @@ { ********************************************************************** - This file is part of the Free Component Library + This file is part of LazUtils. + It is copied from Free Component Library. - See the file COPYING.FPC, included in this distribution, - for details about the license. + See the file COPYING.FPC, included in this distribution, + for details about the license. ********************************************************************** XML serialisation driver diff --git a/components/lazutils/laz_xmlwrite.pas b/components/lazutils/laz_xmlwrite.pas index 8fe7cd57a8..9291815b02 100644 --- a/components/lazutils/laz_xmlwrite.pas +++ b/components/lazutils/laz_xmlwrite.pas @@ -1,3 +1,14 @@ +{ + ********************************************************************** + This file is part of LazUtils. + It is copied from Free Component Library. + + See the file COPYING.FPC, included in this distribution, + for details about the license. + ********************************************************************** + +} + unit Laz_XMLWrite; {$MODE objfpc}{$H+} diff --git a/components/lazutils/lazclasses.pas b/components/lazutils/lazclasses.pas index 4c81d12ccf..6e52e2f433 100644 --- a/components/lazutils/lazclasses.pas +++ b/components/lazutils/lazclasses.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazClasses; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazcollections.pas b/components/lazutils/lazcollections.pas index 089fa5586b..25a94411a2 100644 --- a/components/lazutils/lazcollections.pas +++ b/components/lazutils/lazcollections.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit lazCollections; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazconfigstorage.pas b/components/lazutils/lazconfigstorage.pas index 9e7243e5e7..ddce2d4aa6 100644 --- a/components/lazutils/lazconfigstorage.pas +++ b/components/lazutils/lazconfigstorage.pas @@ -1,5 +1,7 @@ { ***************************************************************************** + This file is part of LazUtils. + See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** diff --git a/components/lazutils/lazdbglog.pas b/components/lazutils/lazdbglog.pas index ff730648de..5316e6128a 100644 --- a/components/lazutils/lazdbglog.pas +++ b/components/lazutils/lazdbglog.pas @@ -1,3 +1,11 @@ +{ + ********************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ********************************************************************** +} unit LazDbgLog; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazfglhash.pas b/components/lazutils/lazfglhash.pas index f08fc88d66..415d85b491 100644 --- a/components/lazutils/lazfglhash.pas +++ b/components/lazutils/lazfglhash.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit lazfglhash; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazfilecache.pas b/components/lazutils/lazfilecache.pas index 5cd4fa8d7d..dbbd23c715 100644 --- a/components/lazutils/lazfilecache.pas +++ b/components/lazutils/lazfilecache.pas @@ -1,3 +1,11 @@ +{ + ********************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ********************************************************************** +} unit LazFileCache; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazfileutils.pas b/components/lazutils/lazfileutils.pas index bfe01fcde1..32b433b3bd 100644 --- a/components/lazutils/lazfileutils.pas +++ b/components/lazutils/lazfileutils.pas @@ -1,5 +1,11 @@ { + ********************************************************************** + This file is part of LazUtils. All functions are thread safe unless explicitely stated + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ********************************************************************** } unit LazFileUtils; diff --git a/components/lazutils/lazfreetypefontcollection.pas b/components/lazutils/lazfreetypefontcollection.pas index 5d3771f241..84335640a3 100644 --- a/components/lazutils/lazfreetypefontcollection.pas +++ b/components/lazutils/lazfreetypefontcollection.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazFreeTypeFontCollection; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazfreetypefpimagedrawer.pas b/components/lazutils/lazfreetypefpimagedrawer.pas index ba1f683f16..125996f274 100644 --- a/components/lazutils/lazfreetypefpimagedrawer.pas +++ b/components/lazutils/lazfreetypefpimagedrawer.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazFreeTypeFPImageDrawer; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazlistclasses.pas b/components/lazutils/lazlistclasses.pas index 89267c44f5..0e1684e509 100644 --- a/components/lazutils/lazlistclasses.pas +++ b/components/lazutils/lazlistclasses.pas @@ -1,18 +1,12 @@ { - /*************************************************************************** - LazListClasses.pas - --------------- - Initial Revision : May 2015 - - - ***************************************************************************/ - ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + + Initial Revision : May 2015 } unit LazListClasses; diff --git a/components/lazutils/lazlogger.pas b/components/lazutils/lazlogger.pas index bd232db900..558914edc6 100644 --- a/components/lazutils/lazlogger.pas +++ b/components/lazutils/lazlogger.pas @@ -1,4 +1,13 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazLogger; + {$mode objfpc}{$H+} interface diff --git a/components/lazutils/lazloggerbase.pas b/components/lazutils/lazloggerbase.pas index 2978b368ae..5c9f264999 100644 --- a/components/lazutils/lazloggerbase.pas +++ b/components/lazutils/lazloggerbase.pas @@ -1,4 +1,13 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazLoggerBase; + {$mode objfpc}{$H+} (* diff --git a/components/lazutils/lazloggerdummy.pas b/components/lazutils/lazloggerdummy.pas index 432d7a27ae..a227db81e3 100644 --- a/components/lazutils/lazloggerdummy.pas +++ b/components/lazutils/lazloggerdummy.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazLoggerDummy; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazloggerprofiling.pas b/components/lazutils/lazloggerprofiling.pas index 9752269fba..4a8adb925d 100644 --- a/components/lazutils/lazloggerprofiling.pas +++ b/components/lazutils/lazloggerprofiling.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazLoggerProfiling; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazmethodlist.pas b/components/lazutils/lazmethodlist.pas index 9db111a380..1afecc115e 100644 --- a/components/lazutils/lazmethodlist.pas +++ b/components/lazutils/lazmethodlist.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazMethodList; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazutf16.pas b/components/lazutils/lazutf16.pas index e685a79650..0b3a034252 100644 --- a/components/lazutils/lazutf16.pas +++ b/components/lazutils/lazutf16.pas @@ -1,10 +1,6 @@ { - /*************************************************************************** - lazutf16.pas - ***************************************************************************/ - ***************************************************************************** - This file is part of LazUtils + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. @@ -14,11 +10,10 @@ although it might also include routines for other encodings. A UTF-16 based implementation for LowerCase, for example, is faster in WideString - and UnicodeString then the default UTF-8 implementation + and UnicodeString then the default UTF-8 implementation. Currently this unit includes only UTF8LowerCaseViaTables which is based on a - UTF-16 table, but it might be extended to include various UTF-16 routines - + UTF-16 table, but it might be extended to include various UTF-16 routines. } unit lazutf16; diff --git a/components/lazutils/lazutf8classes.pas b/components/lazutils/lazutf8classes.pas index a1aed39f74..af1dbe39f5 100644 --- a/components/lazutils/lazutf8classes.pas +++ b/components/lazutils/lazutf8classes.pas @@ -1,3 +1,11 @@ +{ + ********************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ********************************************************************** +} unit LazUTF8Classes; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazutf8sysutils.pas b/components/lazutils/lazutf8sysutils.pas index 5e2047e9e8..87f8f3c8cf 100644 --- a/components/lazutils/lazutf8sysutils.pas +++ b/components/lazutils/lazutf8sysutils.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazUTF8SysUtils; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazutilities.pas b/components/lazutils/lazutilities.pas index eab448b48e..88f4d6e34a 100644 --- a/components/lazutils/lazutilities.pas +++ b/components/lazutils/lazutilities.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit LazUtilities; {$mode objfpc}{$H+} diff --git a/components/lazutils/lazutilsstrconsts.pas b/components/lazutils/lazutilsstrconsts.pas index 7066bfd474..194811c000 100644 --- a/components/lazutils/lazutilsstrconsts.pas +++ b/components/lazutils/lazutilsstrconsts.pas @@ -1,18 +1,12 @@ { - /*************************************************************************** - LazUtilsStrConsts.pas - ---------------- - This unit contains all resource strings from LazUtils - - - ***************************************************************************/ - ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + + This unit contains all resource strings from LazUtils. } unit LazUtilsStrConsts; diff --git a/components/lazutils/lconvencoding.pas b/components/lazutils/lconvencoding.pas index 1cd275710e..04990956d7 100644 --- a/components/lazutils/lconvencoding.pas +++ b/components/lazutils/lconvencoding.pas @@ -1,6 +1,6 @@ { ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/lcsvutils.pas b/components/lazutils/lcsvutils.pas index 4bc54df680..5041b405cb 100644 --- a/components/lazutils/lcsvutils.pas +++ b/components/lazutils/lcsvutils.pas @@ -1,3 +1,11 @@ +{ + ***************************************************************************** + This file is part of LazUtils. + + See the file COPYING.modifiedLGPL.txt, included in this distribution, + for details about the license. + ***************************************************************************** +} unit lcsvutils; {$mode objfpc}{$H+} diff --git a/components/lazutils/lookupstringlist.pas b/components/lazutils/lookupstringlist.pas index 331aadb87c..e13ac26e9e 100644 --- a/components/lazutils/lookupstringlist.pas +++ b/components/lazutils/lookupstringlist.pas @@ -1,6 +1,6 @@ { ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/masks.pas b/components/lazutils/masks.pas index 10da3e9a91..521f024e2b 100644 --- a/components/lazutils/masks.pas +++ b/components/lazutils/masks.pas @@ -1,12 +1,6 @@ { - /*************************************************************************** - masks.pas - --------- - - ***************************************************************************/ - ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. diff --git a/components/lazutils/paswstring.pas b/components/lazutils/paswstring.pas index d11665bc15..1dad5ce58c 100644 --- a/components/lazutils/paswstring.pas +++ b/components/lazutils/paswstring.pas @@ -1,16 +1,13 @@ { ***************************************************************************** - paswstring.pas - - A widestring manager written in Pascal - and optimized for DefaultSystemCodePage CP_UTF8. - - ***************************************************************************** - This file is part of the LazUtils package + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + + A widestring manager written in Pascal + and optimized for DefaultSystemCodePage CP_UTF8. } unit PasWString; diff --git a/components/lazutils/ttcache.pas b/components/lazutils/ttcache.pas index e00f1660dc..4c38c055d0 100644 --- a/components/lazutils/ttcache.pas +++ b/components/lazutils/ttcache.pas @@ -50,17 +50,6 @@ * zero its main fields (essentially the pointers and array * sizes found in the root fields). * - * - * - * - * - * - * - * - * - * - * - * ******************************************************************) unit TTCache; diff --git a/components/lazutils/utf8process.pp b/components/lazutils/utf8process.pp index b286b1e78b..c2dae21af1 100644 --- a/components/lazutils/utf8process.pp +++ b/components/lazutils/utf8process.pp @@ -1,18 +1,12 @@ { - /*************************************************************************** - UTF8Process.pp - --------------- - Initial Revision : Tue Dec 06 09:00:00 CET 2005 - - - ***************************************************************************/ - ***************************************************************************** - This file is part of the Lazarus Component Library (LCL) + This file is part of LazUtils. See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** + + Initial Revision : Tue Dec 06 09:00:00 CET 2005 } unit UTF8Process; diff --git a/components/lazutils/winlazfileutils.inc b/components/lazutils/winlazfileutils.inc index e9a3fdf093..e24b97018f 100644 --- a/components/lazutils/winlazfileutils.inc +++ b/components/lazutils/winlazfileutils.inc @@ -1,7 +1,6 @@ {%MainUnit lazfileutils.pas} - function ReadAllLinks(const Filename: string; ExceptionOnError: boolean): string; begin @@ -17,7 +16,6 @@ begin end; - // ******** Start of WideString specific implementations ************ const