Changeset 75 for trunk/IDE/Transpascal.lpr
- Timestamp:
- Jun 4, 2024, 12:22:49 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Transpascal.lpr
r74 r75 8 8 {$ENDIF}{$ENDIF} 9 9 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; 17 17 18 18 {$R *.res} … … 24 24 25 25 begin 26 Application.Title :='Transpascal IDE';26 Application.Title:='Transpascal IDE'; 27 27 {$IFDEF DEBUG} 28 28 // Heap trace … … 32 32 33 33 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); 49 36 Application.Run; 50 37 end.
Note:
See TracChangeset
for help on using the changeset viewer.