lazarus/components/chmhelp/democontrol/lhelpconnectiondemo1.lpr
mattias 2321f70f86 chmhelp: renamed lhelp connection demo
git-svn-id: trunk@37976 -
2012-07-19 13:27:30 +00:00

15 lines
252 B
ObjectPascal

program lhelpconnectiondemo1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, HelpConnectionUnit1, lhelpcontrolpkg;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.