Changeset 295 for Common/UThreading.pas
- Timestamp:
- Nov 15, 2011, 8:46:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/UThreading.pas
r271 r295 45 45 end; 46 46 47 TVirtualThreadClass = class of TVirtualThread; 48 47 49 TListedThread = class; 48 50 … … 102 104 TThreadList = class(TObjectList) 103 105 function FindById(Id: Integer): TVirtualThread; 104 constructor Create; 106 constructor Create; virtual; 105 107 end; 106 108 … … 187 189 begin 188 190 inherited Create; 189 OwnsObjects := False;190 191 end; 191 192 … … 201 202 OnException(Parent.FThread, E); 202 203 end; 203 204 end; 204 205 205 206 { TListedThread } … … 354 355 ThreadListLock := TCriticalSection.Create; 355 356 ThreadList := TThreadList.Create; 357 ThreadList.OwnsObjects := False; 356 358 357 359 finalization
Note:
See TracChangeset
for help on using the changeset viewer.