Changeset 26 for trunk/MyData.lpr
- Timestamp:
- Sep 10, 2022, 8:03:08 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 7 7 heaptrclog.trc 8 8 MyData.exe 9 MyData.dbg 10
-
- Property svn:ignore
-
trunk/MyData.lpr
r25 r26 1 1 program MyData; 2 2 3 {$mode delphi}{$H+}4 5 3 uses 6 {$IFDEF UNIX} 7 cthreads, clocale, 8 {$ENDIF} 4 {$IFDEF UNIX}cthreads, clocale,{$ENDIF} 9 5 Interfaces, // this includes the LCL widgetset 10 Forms, UFormTables, UCore, Common,6 Forms, UFormTables, UCore, UIpAddress, Common, 11 7 UFormTable, UFormRecords, UFormRecord, UFormFields, UFormField, 12 TemplateGenerics, UFormMain, SysUtils, 13 UFormConnect, UFormDatabases, UFormPreferences; 8 UFormMain, SysUtils, UFormConnect, UFormDatabases, UFormPreferences; 14 9 15 10 {$R *.res} 16 11 17 {$ IFDEF DEBUG}12 {$if declared(UseHeapTrace)} 18 13 const 19 14 HeapTraceLog = 'heaptrclog.trc'; … … 21 16 22 17 begin 23 {$ IFDEF DEBUG}18 {$if declared(UseHeapTrace)} 24 19 // Heap trace 25 20 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
Note:
See TracChangeset
for help on using the changeset viewer.