addons update

git-svn-id: https://svn.code.sf.net/p/kolmck/code@67 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
This commit is contained in:
dkolmck
2010-10-04 12:58:59 +00:00
parent c0d3767042
commit 8a71ebf5bc
30 changed files with 49858 additions and 0 deletions

21
Addons/KOLDHTML.pas Normal file
View File

@ -0,0 +1,21 @@
unit KOLDHTML;
interface
uses KOL, DHTMLEDLib_TLBKOL;
type
TDHTMLEDIT = DHTMLEDLib_TLBKOL.PDHTMLEDIT;
PDHTMLEDIT = DHTMLEDLib_TLBKOL.PDHTMLEDIT;
function NewDHTMLEDIT(AOwner: PControl): PDHTMLEDIT;
implementation
function NewDHTMLEDIT;
begin
new( Result, CreateParented( AOwner ) );
end;
end.