Page 1 of 1

[patch_done] Patch for TZAbstractConnection

Posted: 15.05.2009, 12:57
by Ostfriese
The Delphi compiler throws a warning that the result of PingServer could be undefined. I modified the procedure to

Code: Select all

function TZAbstractConnection.PingServer: Integer;
begin
  RaiseUnsupportedException;
  //050915 set Result to avoid compiler warning
  Result := -1;
end;

Posted: 20.05.2009, 21:25
by mdaems