Subversion Repositories fastphp

Rev

Rev 49 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49 Rev 62
1
program FastPHPEditor;
1
program FastPHPEditor;
2
 
2
 
3
uses
3
uses
4
  Forms,
4
  Forms,
5
  EditorMain in 'EditorMain.pas' {Form1},
5
  EditorMain in 'EditorMain.pas' {Form1},
6
  Functions in 'Functions.pas',
6
  Functions in 'Functions.pas',
7
  WebBrowserUtils in 'WebBrowserUtils.pas',
7
  WebBrowserUtils in 'WebBrowserUtils.pas',
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.
24
 
30