fix non-robustness of FCL CheckSynchronize, it only works if multi-threadedness is initialized

git-svn-id: trunk@8264 -
This commit is contained in:
micha 2005-12-06 20:48:10 +00:00
parent c8b8cc06c1
commit a7e82a005f

View File

@ -575,7 +575,8 @@ begin
TGtkWidgetSet(data).ProcessChildSignal;
end;
// execute the to-be synchronized method
CheckSynchronize;
if IsMultiThread then
CheckSynchronize;
end;
procedure TGtkWidgetSet.InitSynchronizeSupport;