Changeset 8 for trunk/VCSCommander.lpr
- Timestamp:
- May 18, 2015, 12:15:30 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VCSCommander.lpr
r7 r8 9 9 Interfaces, // this includes the LCL widgetset 10 10 Forms, UFormMain, UCore, Common, TemplateGenerics, UFormBrowse, UVCS, 11 UFormFavorites, UFormSettings, UFormConsole, USubversion, UProject, 12 UFormCommit11 UFormFavorites, UFormSettings, UFormConsole, USubversion, UProject, SysUtils, 12 UFormCommit, UFormCheckout 13 13 { you can add units after this }; 14 14 15 15 {$R *.res} 16 16 17 {$IFDEF DEBUG} 18 const 19 HeapTraceLog = 'heaptrclog.trc'; 20 {$ENDIF} 21 22 17 23 begin 24 {$IFDEF DEBUG} 25 // Heap trace 26 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 28 {$ENDIF} 29 18 30 RequireDerivedFormResource := True; 19 31 Application.Initialize; … … 25 37 Application.CreateForm(TFormConsole, FormConsole); 26 38 Application.CreateForm(TFormCommit, FormCommit); 39 Application.CreateForm(TFormCheckout, FormCheckout); 27 40 Application.Run; 28 41 end.
Note:
See TracChangeset
for help on using the changeset viewer.