mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:39:44 +02:00
lcl: formatting
git-svn-id: trunk@28442 -
This commit is contained in:
parent
7c9336f367
commit
dd2575c2e0
@ -6248,14 +6248,14 @@ end;
|
||||
function TWinControl.GetControlCount: Integer;
|
||||
begin
|
||||
if FControls <> nil then
|
||||
Result:=FControls.Count
|
||||
Result := FControls.Count
|
||||
else
|
||||
Result:=0;
|
||||
Result := 0;
|
||||
end;
|
||||
|
||||
function TWinControl.GetDockClientCount: Integer;
|
||||
begin
|
||||
if FDockClients<>nil then
|
||||
if FDockClients <> nil then
|
||||
Result := FDockClients.Count
|
||||
else
|
||||
Result := 0;
|
||||
@ -6263,7 +6263,7 @@ end;
|
||||
|
||||
function TWinControl.GetDockClients(Index: Integer): TControl;
|
||||
begin
|
||||
if FDockClients<>nil then
|
||||
if FDockClients <> nil then
|
||||
Result := TControl(FDockClients[Index])
|
||||
else
|
||||
Result := nil;
|
||||
|
Loading…
Reference in New Issue
Block a user