git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8758 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-03-01 22:12:16 +00:00
parent 5b9794109f
commit 97ca8854ff

View File

@ -391,6 +391,7 @@ type
property ItemEnabled;
published
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
end;
{ TRadioGroupEx }
@ -1673,6 +1674,12 @@ begin
FLastClickedItemIndex := -1;
end;
destructor TCustomRadioGroupEx.Destroy;
begin
FreeAndNil(FHiddenButton);
inherited;
end;
procedure TCustomRadioGroupEx.Changed(Sender: TObject);
begin
CheckItemIndexChanged;