Subversion Repositories fastphp

Rev

Rev 49 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49 Rev 62
Line 8... Line 8...
8
  FastPHPUtils in 'FastPHPUtils.pas',
8
  FastPHPUtils in 'FastPHPUtils.pas',
9
  FindReplace in 'FindReplace.pas',
9
  FindReplace in 'FindReplace.pas',
10
  RunPHP in 'RunPHP.pas',
10
  RunPHP in 'RunPHP.pas',
11
  FastPHPTreeView in 'FastPHPTreeView.pas',
11
  FastPHPTreeView in 'FastPHPTreeView.pas',
12
  ImageListEx in 'ImageListEx.pas',
12
  ImageListEx in 'ImageListEx.pas',
13
  FastPHPConfig in 'FastPHPConfig.pas';
13
  FastPHPConfig in 'FastPHPConfig.pas',
-
 
14
  Vcl.Themes,
-
 
15
  Vcl.Styles;
14
 
16
 
15
{$R *.res}
17
{$R *.res}
16
 
18
 
17
begin
19
begin
-
 
20
  {$IFDEF DEBUG}
18
  ReportMemoryLeaksOnShutdown := True;
21
  ReportMemoryLeaksOnShutdown := True;
-
 
22
  {$ELSE}
-
 
23
  ReportMemoryLeaksOnShutdown := False;
-
 
24
  {$ENDIF}
19
  Application.Initialize;
25
  Application.Initialize;
20
  // Application.MainFormOnTaskbar := True;
26
  // Application.MainFormOnTaskbar := True;
21
  Application.CreateForm(TForm1, Form1);
27
  Application.CreateForm(TForm1, Form1);
22
  Application.Run;
28
  Application.Run;
23
end.
29
end.