DockedFormEditor: fixed compilation with FPC 3.3.1, hint by Peacoor, issue #40427

This commit is contained in:
Maxim Ganetsky 2023-08-03 19:25:36 +03:00
parent 357928192e
commit f904aa53b5

View File

@ -277,7 +277,7 @@ end;
procedure TAnchorControl.CreateCaption;
begin
if not FRootControl.Name.IsEmpty then
if Length(FRootControl.Name) > 0 then
Caption := FRootControl.Name
else
Caption := FRootControl.ClassName;