Subversion Repositories fastphp

Rev

Rev 49 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. program FastPHPEditor;
  2.  
  3. uses
  4.   Forms,
  5.   EditorMain in 'EditorMain.pas' {Form1},
  6.   Functions in 'Functions.pas',
  7.   WebBrowserUtils in 'WebBrowserUtils.pas',
  8.   FastPHPUtils in 'FastPHPUtils.pas',
  9.   FindReplace in 'FindReplace.pas',
  10.   RunPHP in 'RunPHP.pas',
  11.   FastPHPTreeView in 'FastPHPTreeView.pas',
  12.   ImageListEx in 'ImageListEx.pas',
  13.   FastPHPConfig in 'FastPHPConfig.pas',
  14.   Vcl.Themes,
  15.   Vcl.Styles;
  16.  
  17. {$R *.res}
  18.  
  19. begin
  20.   {$IFDEF DEBUG}
  21.   ReportMemoryLeaksOnShutdown := True;
  22.   {$ELSE}
  23.   ReportMemoryLeaksOnShutdown := False;
  24.   {$ENDIF}
  25.   Application.Initialize;
  26.   // Application.MainFormOnTaskbar := True;
  27.   Application.CreateForm(TForm1, Form1);
  28.   Application.Run;
  29. end.
  30.