LazMapViewer: Issue #39092 - RemoveFreeNotification rather than checking csDestroying in ComponentState

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9630 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-02-12 12:47:29 +00:00
parent 5298368052
commit 8d32ebf01d

View File

@ -991,6 +991,7 @@ end;
destructor TMvPluginManager.Destroy;
begin
RemoveFreeNotifications;
while FPluginList.Count > 0 do
FPluginList[FPluginList.Count-1].Free;
FPluginList.Free;
@ -1357,8 +1358,7 @@ end;
procedure TMvPluginManager.RemoveMapView(AMapView: TMapView);
begin
RemoveMouseButton(AMapView);
if not (csDestroying in ComponentState) then
FMapList.Remove(AMapView);
FMapList.Remove(AMapView);
end;
procedure TMvPluginManager.SetChildOrder(Child: TComponent; Order: Integer);