Ignore:
Timestamp:
Aug 17, 2012, 9:53:11 AM (12 years ago)
Author:
chronos
Message:
  • Fixed: Use parent TCommNode Active property instead custom in PinConnection package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • PinConnection/UCommPin.pas

    r413 r414  
    5858  TCommNode = class(TComponent)
    5959  private
     60  protected
    6061    FActive: Boolean;
    61   protected
    62     procedure SetActive(AValue: Boolean); virtual;
     62    procedure SetActive(const AValue: Boolean); virtual;
    6363  public
    6464    property Active: Boolean read FActive write SetActive;
     
    7070{ TCommNode }
    7171
    72 procedure TCommNode.SetActive(AValue: Boolean);
     72procedure TCommNode.SetActive(const AValue: Boolean);
    7373begin
    7474  if FActive = AValue then Exit;
Note: See TracChangeset for help on using the changeset viewer.