mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-04 10:00:34 +01:00
IdeIntf: Fix a variable used in TBackupComponentList.IsEqual. FLookupRoot -> ALookupRoot.
git-svn-id: trunk@63778 -
This commit is contained in:
parent
9ff4b0dc00
commit
79aa858900
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user