IdeIntf: Fix a variable used in TBackupComponentList.IsEqual. FLookupRoot -> ALookupRoot.

git-svn-id: trunk@63778 -
This commit is contained in:
juha 2020-08-18 17:35:15 +00:00
parent 9ff4b0dc00
commit 79aa858900

View File

@ -348,7 +348,7 @@ begin
Result := False;
if ALookupRoot <> LookupRoot then Exit;
if not FSelection.IsEqual(ASelection) then Exit;
if (ALookupRoot <> nil) and (FLookupRoot is TComponent) then
if ALookupRoot is TComponent then
begin
if ComponentCount <> TComponent(ALookupRoot).ComponentCount then
Exit;