mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 11:20:23 +02: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