Changeset 414 for PinConnection/UCommPin.pas
- Timestamp:
- Aug 17, 2012, 9:53:11 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/UCommPin.pas
r413 r414 58 58 TCommNode = class(TComponent) 59 59 private 60 protected 60 61 FActive: Boolean; 61 protected 62 procedure SetActive(AValue: Boolean); virtual; 62 procedure SetActive(const AValue: Boolean); virtual; 63 63 public 64 64 property Active: Boolean read FActive write SetActive; … … 70 70 { TCommNode } 71 71 72 procedure TCommNode.SetActive( AValue: Boolean);72 procedure TCommNode.SetActive(const AValue: Boolean); 73 73 begin 74 74 if FActive = AValue then Exit;
Note:
See TracChangeset
for help on using the changeset viewer.