LCL/TColorBox, TColorListbox: Add missing Notification procedure. Issue #39518.

(cherry picked from commit 6efaae3d24)
This commit is contained in:
wp_xyz 2021-12-16 14:06:26 +01:00 committed by Maxim Ganetsky
parent e1d74d0a94
commit 1dfb84cfbc

View File

@ -49,7 +49,7 @@ type
FColorRectOffset: Integer;
FDefaultColorColor: TColor;
FNoneColorColor: TColor;
FcolorDialog:TColorDialog;
FColorDialog:TColorDialog;
FOnGetColors: TGetColorsEvent;
FStyle: TColorBoxStyle;
FSelected: TColor;
@ -76,6 +76,7 @@ type
procedure DoGetColors; virtual;
procedure CloseUp; override;
function PickCustomColor: Boolean; virtual;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(AOwner: TComponent); override;
property ColorRectWidth: Integer read GetColorRectWidth write SetColorRectWidth stored ColorRectWidthStored;
@ -198,6 +199,7 @@ type
procedure DoGetColors; virtual;
procedure DoSelectionChange(User: Boolean); override;
function PickCustomColor: Boolean; virtual;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(AOwner: TComponent); override;
property ColorRectWidth: Integer read GetColorRectWidth write SetColorRectWidth stored ColorRectWidthStored;
@ -738,6 +740,14 @@ begin
end;
end;
procedure TCustomColorBox.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (Operation = opRemove) and (AComponent = FColorDialog) then
FColorDialog := nil;
end;
{------------------------------------------------------------------------------}
{------------------------------------------------------------------------------
Method: TCustomColorListBox.Create
@ -1095,5 +1105,12 @@ begin
end;
end;
procedure TCustomColorListBox.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (Operation = opRemove) and (AComponent = FColorDialog) then
FColorDialog := nil;
end;
{------------------------------------------------------------------------------}
end.