Changeset 205 for trunk/AcronymDecoder.lpr
- Timestamp:
- May 6, 2019, 2:53:22 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AcronymDecoder.lpr
r184 r205 8 8 {$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UAcronym, Common, SysUtils, TemplateGenerics,10 Forms, UAcronym, Common, SysUtils, 11 11 CoolTranslator, UFormMain, UCore, UFormCheck 12 12 { you can add units after this }; … … 14 14 {$R *.res} 15 15 16 {$ IFDEF DEBUG}16 {$if declared(UseHeapTrace)} 17 17 const 18 18 HeapTraceLog = 'heaptrclog.trc'; … … 21 21 22 22 begin 23 {$IFDEF DEBUG} 24 // Heap trace 23 {$if declared(UseHeapTrace)} 25 24 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 26 25 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 26 {$ENDIF} 28 27 29 Application.Title :='Acronym Decoder';28 Application.Title:='Acronym Decoder'; 30 29 RequireDerivedFormResource := True; 31 30 Application.Initialize;
Note:
See TracChangeset
for help on using the changeset viewer.