Changeset 41 for trunk/USystem.pas


Ignore:
Timestamp:
Mar 9, 2012, 9:40:05 AM (13 years ago)
Author:
chronos
Message:
  • Fixed: Memory leak in TReportColumn.
  • Modified: Main item list is created once on application start instead on every tree item mouse doubleclick.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/USystem.pas

    r40 r41  
    4747  end;
    4848
     49  { TReportColumn }
     50
    4951  TReportColumn = class
    5052    Caption: string;
     
    5456    VirtualItem: Boolean;
    5557    Control: TWinControl;
     58    destructor Destroy; override;
    5659  end;
    5760
     
    153156  SUnsupportedType = 'Unsupported property type "%s"';
    154157
     158{ TReportColumn }
     159
     160destructor TReportColumn.Destroy;
     161begin
     162  CustomType.Free;
     163  inherited Destroy;
     164end;
     165
    155166{ TChronisTypeList }
    156167
Note: See TracChangeset for help on using the changeset viewer.