codetools: started utility unit laz

git-svn-id: trunk@37970 -
This commit is contained in:
mattias 2012-07-19 08:14:09 +00:00
parent 700e4c6176
commit 4d58e355b5
2 changed files with 11 additions and 7 deletions

View File

@ -29,7 +29,7 @@
<License Value="GPL-2 <License Value="GPL-2
"/> "/>
<Version Major="1" Release="1"/> <Version Major="1" Release="1"/>
<Files Count="58"> <Files Count="59">
<Item1> <Item1>
<Filename Value="Makefile"/> <Filename Value="Makefile"/>
<Type Value="Text"/> <Type Value="Text"/>
@ -261,8 +261,12 @@
</Item57> </Item57>
<Item58> <Item58>
<Filename Value="unitdictionary.pas"/> <Filename Value="unitdictionary.pas"/>
<UnitName Value="unitdictionary"/> <UnitName Value="UnitDictionary"/>
</Item58> </Item58>
<Item59>
<Filename Value="ctloadlaz.pas"/>
<UnitName Value="ctloadlaz"/>
</Item59>
</Files> </Files>
<LazDoc Paths="docs"/> <LazDoc Paths="docs"/>
<i18n> <i18n>

View File

@ -2,7 +2,7 @@
This source is only used to compile and install the package. This source is only used to compile and install the package.
} }
unit CodeTools; unit CodeTools;
interface interface
@ -18,14 +18,14 @@ uses
PascalReaderTool, PPUCodeTools, PPUGraph, PPUParser, ResourceCodeTool, PascalReaderTool, PPUCodeTools, PPUGraph, PPUParser, ResourceCodeTool,
SourceChanger, SourceLog, StdCodeTools, OtherIdentifierTree, SourceChanger, SourceLog, StdCodeTools, OtherIdentifierTree,
CodeToolsCfgScript, CTXMLFixFragment, CTUnitGraph, ChangeDeclarationTool, CodeToolsCfgScript, CTXMLFixFragment, CTUnitGraph, ChangeDeclarationTool,
CodeToolsFPCMsgs, UnitDictionary, LazarusPackageIntf; CodeToolsFPCMsgs, UnitDictionary, ctloadlaz, LazarusPackageIntf;
implementation implementation
procedure Register; procedure Register;
begin begin
end; end;
initialization initialization
RegisterPackage('CodeTools', @Register); RegisterPackage('CodeTools', @Register);
end. end.