mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-24 01:03:56 +02:00
20 lines
317 B
ObjectPascal
20 lines
317 B
ObjectPascal
program calleditorwithpkg;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
maincalleditor,
|
|
lazreport;
|
|
|
|
{$R calleditorwithpkg.res}
|
|
|
|
begin
|
|
Application.Title:='LazReport Designer';
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.Run;
|
|
end.
|
|
|