mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 08:37:58 +02:00
LazControls: Reset filtering correctly by FilterEdits when the control is detached. Issue #41321.
This commit is contained in:
parent
cf948b040d
commit
e8fa62c8e7
@ -143,8 +143,7 @@ begin
|
||||
if Assigned(fFilteredListbox) then
|
||||
begin
|
||||
fFilteredListbox.RemoveFreeNotification(Self);
|
||||
InternalSetFilter('');
|
||||
ApplyFilter(True);
|
||||
ForceFilter('');
|
||||
end;
|
||||
fFilteredListbox:=AValue;
|
||||
if Assigned(fFilteredListbox) then
|
||||
|
@ -154,8 +154,7 @@ begin
|
||||
if Assigned(fFilteredListview) then
|
||||
begin
|
||||
fFilteredListview.RemoveFreeNotification(Self);
|
||||
InternalSetFilter('');
|
||||
ApplyFilter(True);
|
||||
ForceFilter('');
|
||||
end;
|
||||
fFilteredListview := AValue;
|
||||
if Assigned(fFilteredListview) then
|
||||
|
@ -727,8 +727,7 @@ begin
|
||||
begin
|
||||
fFilteredTreeview.RemoveFreeNotification(Self);
|
||||
fFilteredTreeview.RemoveHandlerOnBeforeDestruction(@OnBeforeTreeDestroy);
|
||||
InternalSetFilter('');
|
||||
ApplyFilter(True);
|
||||
ForceFilter('');
|
||||
end;
|
||||
fFilteredTreeview := AValue;
|
||||
if fFilteredTreeview <> nil then
|
||||
|
Loading…
Reference in New Issue
Block a user