mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-09-03 06:00:14 +02:00
* Workaround for compiler bug (not recognizing implicit function calls), fix missing semilcolon now being caught by compiler
This commit is contained in:
parent
1575021928
commit
fbbb273a36
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user