Changeset 575 for PinConnection/CommThread.pas
- Timestamp:
- Jun 25, 2024, 11:56:51 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/CommThread.pas
r574 r575 1 unit UCommThread; 2 3 {$mode Delphi}{$H+} 1 unit CommThread; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, blcksock, UCommPin, SyncObjs, UCommon,9 DateUtils, UThreading, SpecializedList, UBinarySerializer;6 Classes, SysUtils, blcksock, CommPin, SyncObjs, Common, 7 DateUtils, Threading, SpecializedList, BinarySerializer; 10 8 11 9 type … … 49 47 destructor Destroy; override; 50 48 end; 49 51 50 52 51 implementation … … 188 187 destructor TCommThreadReceiveThread.Destroy; 189 188 begin 190 Stream.Free;189 FreeAndNil(Stream); 191 190 inherited; 192 191 end;
Note:
See TracChangeset
for help on using the changeset viewer.