mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 02:18:03 +02:00
rx component: fixed compilation with fpc 2.3.1 r10094 #86a36d4a2f
git-svn-id: trunk@13923 -
This commit is contained in:
parent
7b40cf0831
commit
3a9f3361aa
@ -410,13 +410,13 @@ end;
|
||||
|
||||
procedure TFormPlacement.Loaded;
|
||||
var
|
||||
Loading: Boolean;
|
||||
IsLoading: Boolean;
|
||||
begin
|
||||
Loading := csLoading in ComponentState;
|
||||
IsLoading := csLoading in ComponentState;
|
||||
inherited Loaded;
|
||||
if not (csDesigning in ComponentState) then
|
||||
begin
|
||||
if Loading then
|
||||
if IsLoading then
|
||||
SetEvents;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user