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