Changeset 9 for trunk/AcronymDecoder.lpr
- Timestamp:
- Apr 22, 2016, 8:35:20 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 AcronymDecoder.exe 3 3 AcronymDecoder.lps 4 AcronymDecoder 5 heaptrclog.trc 6
-
- Property svn:ignore
-
trunk/AcronymDecoder.lpr
r4 r9 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain, UAcronym, synapse, UFormImport, Common, TemplateGenerics,10 Forms, UFormMain, UAcronym, synapse, UFormImport, Common, SysUtils, TemplateGenerics, 11 11 UFormAcronym 12 12 { you can add units after this }; … … 14 14 {$R *.res} 15 15 16 {$IFDEF DEBUG} 17 const 18 HeapTraceLog = 'heaptrclog.trc'; 19 {$ENDIF} 20 21 16 22 begin 17 Application.Title:='Acronym Decoder'; 18 RequireDerivedFormResource:=True; 23 {$IFDEF DEBUG} 24 // Heap trace 25 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 26 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 {$ENDIF} 28 29 Application.Title := 'Acronym Decoder'; 30 RequireDerivedFormResource := True; 19 31 Application.Initialize; 20 32 Application.CreateForm(TFormMain, FormMain);
Note:
See TracChangeset
for help on using the changeset viewer.