lcl: moved fpcadds to lazutils

git-svn-id: trunk@46894 -
This commit is contained in:
mattias 2014-11-20 12:49:36 +00:00
parent 530a72b248
commit 04975da637
6 changed files with 379 additions and 381 deletions

2
.gitattributes vendored
View File

@ -2672,6 +2672,7 @@ components/lazutils/examples/DictionaryStringList/main.lfm svneol=native#text/pl
components/lazutils/examples/DictionaryStringList/main.pas svneol=native#text/plain
components/lazutils/fileutil.inc svneol=native#text/pascal
components/lazutils/fileutil.pas svneol=native#text/pascal
components/lazutils/fpcadds.pas svneol=native#text/pascal
components/lazutils/fpmake.pp svneol=native#text/plain
components/lazutils/languages/lazutilsstrconsts.cs.po svneol=native#text/plain
components/lazutils/languages/lazutilsstrconsts.de.po svneol=native#text/plain
@ -6223,7 +6224,6 @@ lcl/forms/finddlgunit.lfm svneol=native#text/plain
lcl/forms/finddlgunit.pas svneol=native#text/plain
lcl/forms/replacedlgunit.lfm svneol=native#text/plain
lcl/forms/replacedlgunit.pas svneol=native#text/plain
lcl/fpcadds.pas svneol=native#text/pascal
lcl/fpmake.pp svneol=native#text/plain
lcl/graphics.pp svneol=native#text/pascal
lcl/graphmath.pp svneol=native#text/pascal

View File

@ -9,17 +9,13 @@
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Other>
<CompilerMessages>
<UseMsgFile Value="True"/>
</CompilerMessages>
<CustomOptions Value="$(IDEBuildOptions)"/>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Useful units for Lazarus packages."/>
<License Value="Modified LGPL-2"/>
<Version Major="1"/>
<Files Count="73">
<Files Count="74">
<Item1>
<Filename Value="laz2_dom.pas"/>
<UnitName Value="Laz2_DOM"/>
@ -310,9 +306,13 @@
<Type Value="Include"/>
</Item72>
<Item73>
<Filename Value="lazloggerprofiling.pas"/>
<Filename Value="lazloggerprofiling.pas"/>
<UnitName Value="LazLoggerProfiling"/>
</Item73>
<Item74>
<Filename Value="fpcadds.pas"/>
<UnitName Value="FPCAdds"/>
</Item74>
</Files>
<LazDoc Paths="../../docs/xml/lazutils"/>
<i18n>

View File

@ -7,14 +7,16 @@ unit LazUtils;
interface
uses
Laz2_DOM, Laz2_XMLCfg, laz2_XMLRead, laz2_xmlutils, laz2_XMLWrite, Laz_DOM, Laz_XMLCfg,
Laz_XMLRead, Laz_XMLStreaming, Laz_XMLWrite, LazFileUtils, LazFileCache, LazUTF8,
LazDbgLog, paswstring, FileUtil, LazUTF8Classes, Masks, LazUtilsStrConsts, LConvEncoding,
lazutf16, lazutf8sysutils, LazMethodList, AvgLvlTree, LazLogger, LazFreeType, TTCache,
TTCalc, TTCMap, TTDebug, TTError, TTFile, TTGLoad, TTInterp, TTLoad, TTMemory, TTObjs,
TTProfile, TTRASTER, TTTables, TTTypes, EasyLazFreeType, LazLoggerBase, LazLoggerDummy,
LazClasses, LazFreeTypeFontCollection, LazConfigStorage, UTF8Process, laz2_xpath,
DictionaryStringList, LazLoggerProfiling, LazarusPackageIntf;
Laz2_DOM, Laz2_XMLCfg, laz2_XMLRead, laz2_xmlutils, laz2_XMLWrite, Laz_DOM,
Laz_XMLCfg, Laz_XMLRead, Laz_XMLStreaming, Laz_XMLWrite, LazFileUtils,
LazFileCache, LazUTF8, LazDbgLog, paswstring, FileUtil, LazUTF8Classes,
Masks, LazUtilsStrConsts, LConvEncoding, lazutf16, lazutf8sysutils,
LazMethodList, AvgLvlTree, LazLogger, LazFreeType, TTCache, TTCalc, TTCMap,
TTDebug, TTError, TTFile, TTGLoad, TTInterp, TTLoad, TTMemory, TTObjs,
TTProfile, TTRASTER, TTTables, TTTypes, EasyLazFreeType, LazLoggerBase,
LazLoggerDummy, LazClasses, LazFreeTypeFontCollection, LazConfigStorage,
UTF8Process, laz2_xpath, DictionaryStringList, LazLoggerProfiling, FPCAdds,
LazarusPackageIntf;
implementation

View File

@ -10,11 +10,11 @@ uses
CheckLst, Clipbrd, ColorBox, ComCtrls, Controls, CustomTimer, DBActns,
DbCtrls, DBGrids, DefaultTranslator, Dialogs, DynamicArray, DynHashArray,
DynQueue, ExtCtrls, ExtDlgs, ExtendedStrings, extgraphics, FileCtrl, Forms,
FPCAdds, Graphics, GraphMath, GraphType, GraphUtil, Grids, HelpIntfs,
IcnsTypes, ImageListCache, ImgList, IniPropStorage, InterfaceBase,
IntfGraphics, LazHelpHTML, LazHelpIntf, LazLinkedList, LCLClasses, LCLIntf,
LCLMemManager, LCLMessageGlue, LCLProc, LCLResCache, LCLStrConsts, LCLType,
Menus, LCLUnicodeData, LCLVersion, LMessages, LResources, maps, MaskEdit,
Graphics, GraphMath, GraphType, GraphUtil, Grids, HelpIntfs, IcnsTypes,
ImageListCache, ImgList, IniPropStorage, InterfaceBase, IntfGraphics,
LazHelpHTML, LazHelpIntf, LazLinkedList, LCLClasses, LCLIntf, LCLMemManager,
LCLMessageGlue, LCLProc, LCLResCache, LCLStrConsts, LCLType, Menus,
LCLUnicodeData, LCLVersion, LMessages, LResources, maps, MaskEdit,
PairSplitter, PopupNotifier, PostScriptCanvas, PostScriptPrinter,
postscriptunicode, Printers, PropertyStorage, RubberBand, ShellCtrls, Spin,
StdActns, StdCtrls, StringHashList, TextStrings, Themes, TmSchema, Toolwin,

File diff suppressed because it is too large Load Diff