You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6359 8e941d3f-bd1b-0410-a28a-d453659cc2b4
15 lines
323 B
ObjectPascal
15 lines
323 B
ObjectPascal
program OLBarDemo;
|
|
|
|
uses
|
|
Forms, Interfaces, LCLVersion,
|
|
OLBarMainFormU in 'OLBarMainFormU.pas' {OLBarMainForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled := True; // Remove this line if Lazarus is older than 1.8
|
|
Application.Initialize;
|
|
Application.CreateForm(TOLBarMainForm, OLBarMainForm);
|
|
Application.Run;
|
|
end.
|