[patch_done] Patch for TZAbstractConnection
Posted: 15.05.2009, 12:57
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;