lazarus-ccr/components/jvcllaz/examples/JvSpellChecker/JvSpellCheckerDemo.lpr

20 lines
455 B
ObjectPascal

program JvSpellCheckerDemo;
uses
Forms, Interfaces, LCLVersion,
MainFrm in 'MainFrm.pas' {frmMain},
JvSpellCheckerForm in 'JvSpellCheckerForm.pas' {frmSpellChecker};
{$R *.res}
begin
{$IF LCL_FullVersion >= 1080000}
Application.Scaled := True;
{$ENDIF}
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmSpellChecker, frmSpellChecker);
Application.Run;
end.