Splits the big customdrawn unit in two smaller parts

git-svn-id: trunk@33087 -
This commit is contained in:
sekelsenmat 2011-10-26 09:25:30 +00:00
parent bd7b46c17a
commit 0700999942
5 changed files with 2162 additions and 2121 deletions

1
.gitattributes vendored
View File

@ -638,6 +638,7 @@ components/compilers/javascript/examples/jsclassxmlread.pas svneol=native#text/p
components/custom/README.txt svneol=native#text/plain
components/customdrawn/customdrawn.lpk svneol=native#text/plain
components/customdrawn/customdrawn.pas svneol=native#text/pascal
components/customdrawn/customdrawncontrols.pas svneol=native#text/pascal
components/customdrawn/customdrawnextras.pas svneol=native#text/plain
components/customdrawn/customdrawnutils.pas svneol=native#text/pascal
components/customform/custforms.pp svneol=native#text/plain

View File

@ -23,7 +23,7 @@
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Files Count="2">
<Files Count="3">
<Item1>
<Filename Value="customdrawnextras.pas"/>
<HasRegisterProc Value="True"/>
@ -33,6 +33,10 @@
<Filename Value="customdrawnutils.pas"/>
<UnitName Value="customdrawnutils"/>
</Item2>
<Item3>
<Filename Value="customdrawncontrols.pas"/>
<UnitName Value="customdrawncontrols"/>
</Item3>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="3">

View File

@ -7,7 +7,7 @@ unit customdrawn;
interface
uses
customdrawnextras, customdrawnutils, LazarusPackageIntf;
customdrawnextras, customdrawnutils, customdrawncontrols, LazarusPackageIntf;
implementation

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff