* Workaround for compiler bug (not recognizing implicit function calls), fix missing semilcolon now being caught by compiler

This commit is contained in:
michael 2018-01-31 14:19:54 +00:00
parent 1575021928
commit fbbb273a36

View File

@ -4656,7 +4656,7 @@ begin
{$ifdef dsdebug}
Writeln ('Trying to do it');
{$endif dsdebug}
P;
P();
exit;
except
On E : EDatabaseError do
@ -4708,7 +4708,7 @@ begin
If AValue=FDataProxy then
exit;
if Assigned(FDataProxy) then
FDataProxy.RemoveFreeNotification(Self)
FDataProxy.RemoveFreeNotification(Self);
FDataProxy:=AValue;
if Assigned(FDataProxy) then
FDataProxy.FreeNotification(Self)