Changeset 23 for trunk/LazFuckIDE.lpr
- Timestamp:
- Feb 12, 2012, 8:25:44 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LazFuckIDE.lpr
r21 r23 9 9 {$ENDIF} 10 10 Interfaces, // this includes the LCL widgetset 11 Forms, UMainForm, UBrainFuck, UInterpreterForm, UApplicationInfo, 12 UCompiledForm, UOptionsForm, ULastOpenedList, URegistry, CoolTranslator, 13 Common, TemplateGenerics, UCompiler, UCompilerDelphi, UCompilerPHP 14 { you can add units after this }; 11 Forms, UBrainFuck, UApplicationInfo, UCompiledForm, UInterpretterForm, 12 UMainForm, UOptionsForm, ULastOpenedList, URegistry, CoolTranslator, Common, 13 TemplateGenerics, UCompiler, UCompilerDelphi, UCompilerPHP; 15 14 16 15 {$R *.res} 17 16 18 17 begin 19 Application.Title :='LazFuck IDE';18 Application.Title := 'LazFuck IDE'; 20 19 RequireDerivedFormResource := True; 21 20 Application.Initialize; 22 21 Application.CreateForm(TMainForm, MainForm); 22 Application.CreateForm(TCompiledForm, CompiledForm); 23 23 Application.CreateForm(TInterpreterForm, InterpreterForm); 24 Application.CreateForm(TCompiledForm, CompiledForm);25 24 Application.CreateForm(TOptionsForm, OptionsForm); 26 25 Application.Run;
Note:
See TracChangeset
for help on using the changeset viewer.