Ignore:
Timestamp:
Oct 30, 2010, 6:39:12 PM (14 years ago)
Author:
george
Message:
  • Added: Ability of TListObject to own items and be able to free them on deletion and list destruction.
Location:
Generics/TemplateGenerics/Demo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Generics/TemplateGenerics/Demo

    • Property svn:ignore
      •  

        old new  
        11lib
        22Demo.exe
         3heaptrclog.trc
         4Demo
  • Generics/TemplateGenerics/Demo/Demo.lpr

    r70 r78  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, UMainForm, TemplateGenerics
    11   { you can add units after this };
     10  Forms, SysUtils, UMainForm, TemplateGenerics;
    1211
    1312{$R *.res}
    1413
     14const
     15  HeapTraceLogFileName = 'heaptrclog.trc';
    1516begin
     17  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLogFileName);
     18  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLogFileName);
    1619  Application.Initialize;
    1720  Application.CreateForm(TMainForm, MainForm);
Note: See TracChangeset for help on using the changeset viewer.