Changeset 145 for trunk/LazFuck.lpr


Ignore:
Timestamp:
Jun 5, 2023, 6:44:57 PM (11 months ago)
Author:
chronos
Message:
  • Modified: Remove U prefix from unit names.
  • Modified: Updated Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LazFuck.lpr

    r143 r145  
    99  {$ENDIF}
    1010  Interfaces, // this includes the LCL widgetset
    11   Forms, UTarget, UFormCPU, UFormMain, UFormOutput, UFormInput, UFormMemory,
    12   UFormMessages, UFormSourceCode, UFormTargetCode, UCore, Common,
    13   SysUtils, UBFCodeTools;
     11  Forms, Target, FormCPU, FormMain, FormOutput, FormInput, FormMemory,
     12  FormMessages, FormSourceCode, FormTargetCode, Core, Common,
     13  SysUtils, BFCodeTools;
    1414
    1515{$R *.res}
     
    3131  RequireDerivedFormResource := True;
    3232  Application.Initialize;
    33   Application.CreateForm(TCore, Core);
    34   Application.CreateForm(TFormMain, FormMain);
    35   Application.CreateForm(TFormCPU, FormCPU);
    36   Application.CreateForm(TFormOutput, FormOutput);
    37   Application.CreateForm(TFormInput, FormInput);
    38   Application.CreateForm(TFormMemory, FormMemory);
    39   Application.CreateForm(TFormMessages, FormMessages);
    40   Application.CreateForm(TFormSourceCode, FormSourceCode);
    41   Application.CreateForm(TFormTargetCode, FormTargetCode);
     33  Application.CreateForm(TCore, Core.Core);
    4234  Application.Run;
    4335end.
Note: See TracChangeset for help on using the changeset viewer.