lazarus/components/turbopower_ipro/turbopoweripro.pas
andrew 7bd498e426 Changed tabkey handling for Iphtml. Speeds up loading large pages of links considerably. maybe 100x
Fixed bug #21326 - PgUp PgDown etc didn't do anything.
Now up, down left, right, space, return, pgup and pgdown are handled.

git-svn-id: trunk@40505 -
2013-03-07 18:38:47 +00:00

24 lines
499 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit TurboPowerIPro;
interface
uses
IpAnim, IpConst, Ipfilebroker, IpHtml, IpHtmlPv, IpMsg, IpStrms, IpUtils,
IpHtmlTabList, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('Ipfilebroker', @Ipfilebroker.Register);
RegisterUnit('IpHtml', @IpHtml.Register);
end;
initialization
RegisterPackage('TurboPowerIPro', @Register);
end.