Changeset 23 for trunk/LazFuckIDE.lpr


Ignore:
Timestamp:
Feb 12, 2012, 8:25:44 PM (12 years ago)
Author:
chronos
Message:
  • All forms moved to subfolder.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LazFuckIDE.lpr

    r21 r23  
    99  {$ENDIF}
    1010  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;
    1514
    1615{$R *.res}
    1716
    1817begin
    19   Application.Title:='LazFuck IDE';
     18  Application.Title := 'LazFuck IDE';
    2019  RequireDerivedFormResource := True;
    2120  Application.Initialize;
    2221  Application.CreateForm(TMainForm, MainForm);
     22  Application.CreateForm(TCompiledForm, CompiledForm);
    2323  Application.CreateForm(TInterpreterForm, InterpreterForm);
    24   Application.CreateForm(TCompiledForm, CompiledForm);
    2524  Application.CreateForm(TOptionsForm, OptionsForm);
    2625  Application.Run;
Note: See TracChangeset for help on using the changeset viewer.