Ignore:
Timestamp:
Jun 4, 2024, 12:22:49 AM (4 months ago)
Author:
chronos
Message:
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE/Transpascal.lpr

    r74 r75  
    88  {$ENDIF}{$ENDIF}
    99  Forms, Interfaces, SysUtils,
    10   UFormMain {MainForm},
    11   UTextSource, UProject, TranspascalCompiler, UFormProject,
    12 UFormSourceCode, UFormMessages,
    13   UFormTargetCode, UFormCodeTree, TemplateGenerics, CoolTranslator, Common,
    14   UFormAbout, UFormOptions, UFormTargets,
    15 UFormProjectNew, UProjectTemplates, UFormTargetProject, UCore,
    16 UFormTargetOptions, UFormExternalProducerOutput, UIDEModulePascal;
     10  FormMain {MainForm},
     11  TextSource, Project, TranspascalCompiler, FormProject,
     12  FormSourceCode, FormMessages,
     13  FormTargetCode, FormCodeTree, Common,
     14  FormOptions, FormTargets,
     15  FormProjectNew, ProjectTemplates, FormTargetProject, Core,
     16  FormTargetOptions, FormExternalProducerOutput, IDEModulePascal;
    1717
    1818{$R *.res}
     
    2424
    2525begin
    26   Application.Title := 'Transpascal IDE';
     26  Application.Title:='Transpascal IDE';
    2727  {$IFDEF DEBUG}
    2828  // Heap trace
     
    3232
    3333  Application.Initialize;
    34   Application.CreateForm(TCore, Core);
    35   Application.CreateForm(TFormMain, FormMain);
    36   Application.CreateForm(TFormProject, FormProject);
    37   Application.CreateForm(TFormSourceCode, FormSourceCode);
    38   Application.CreateForm(TFormMessages, FormMessages);
    39   Application.CreateForm(TFormTargetCode, FormTargetCode);
    40   Application.CreateForm(TFormCodeTree, FormCodeTree);
    41   Application.CreateForm(TFormAbout, FormAbout);
    42   Application.CreateForm(TFormOptions, FormOptions);
    43   Application.CreateForm(TFormTargets, FormTargets);
    44   Application.CreateForm(TFormProjectNew, FormProjectNew);
    45   Application.CreateForm(TFormTargetProject, FormTargetProject);
    46   Application.CreateForm(TFormTargetOptions, FormTargetOptions);
    47   Application.CreateForm(TFormExternalProducerOutput, FormExternalProducerOutput
    48     );
     34  Application.CreateForm(TCore, Core.Core);
     35  Application.CreateForm(TFormMain, FormMain.FormMain);
    4936  Application.Run;
    5037end.
Note: See TracChangeset for help on using the changeset viewer.