Leak in TW7CustomSpeedButton

Memory leak in TW7CustomSpeedButton. Simple fix add the following line to the destructor.

FImageChangeLink.Free;

ie.

destructor TW7CustomSpeedButton.Destroy;
begin
  .... 
  FImageChangeLink.Free;
  inherited;
end;

BTW, I love the new look of the W7 components.

Cheers 
John.