Changeset 41 for trunk/USystem.pas
- Timestamp:
- Mar 9, 2012, 9:40:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/USystem.pas
r40 r41 47 47 end; 48 48 49 { TReportColumn } 50 49 51 TReportColumn = class 50 52 Caption: string; … … 54 56 VirtualItem: Boolean; 55 57 Control: TWinControl; 58 destructor Destroy; override; 56 59 end; 57 60 … … 153 156 SUnsupportedType = 'Unsupported property type "%s"'; 154 157 158 { TReportColumn } 159 160 destructor TReportColumn.Destroy; 161 begin 162 CustomType.Free; 163 inherited Destroy; 164 end; 165 155 166 { TChronisTypeList } 156 167
Note:
See TracChangeset
for help on using the changeset viewer.