Changeset 148 for trunk/Forms/FormMain.pas
- Timestamp:
- Jun 5, 2024, 8:50:50 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormMain.pas
r145 r148 177 177 178 178 uses 179 Core, TargetInterpretter, BFTarget, Common ;179 Core, TargetInterpretter, BFTarget, Common, FormAbout; 180 180 181 181 resourcestring … … 581 581 582 582 procedure TFormMain.AAboutExecute(Sender: TObject); 583 begin 584 Core.Core.AboutDialog.Show; 583 var 584 FormAbout: TFormAbout; 585 begin 586 FormAbout := TFormAbout.Create(nil); 587 FormAbout.ApplicationInfo := Core.Core.ApplicationInfo; 588 try 589 FormAbout.ShowModal; 590 finally 591 FormAbout.Free; 592 end; 585 593 end; 586 594
Note:
See TracChangeset
for help on using the changeset viewer.