lazarus/test/manual/lcl/textextent/textextent.lpr
juha e749bc2e6b Tests: move lclmanual -> manual/lcl
git-svn-id: trunk@40907 -
2013-04-28 13:42:54 +00:00

22 lines
366 B
ObjectPascal

program textextent;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainform
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.