* Merging revisions 42978 from trunk:

------------------------------------------------------------------------
    r42978 | michael | 2019-09-13 18:20:39 +0200 (Fri, 13 Sep 2019) | 1 line
    
    * Fix some deprecated warnings
    ------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@43255 -
This commit is contained in:
michael 2019-10-19 14:46:50 +00:00
parent b4ac2e2027
commit 9acb68ee32

View File

@ -369,7 +369,7 @@ end;
function TFPHTTPServerHandler.GetHostName: String;
begin
Result:=FServer.HostName;
Result:=FServer.CertificateData.HostName;
end;
function TFPHTTPServerHandler.GetIdle: TNotifyEvent;
@ -404,7 +404,7 @@ end;
procedure TFPHTTPServerHandler.SetHostName(AValue: String);
begin
FServer.HostName:=aValue;
FServer.CertificateData.HostName:=aValue;
end;
procedure TFPHTTPServerHandler.SetIdle(AValue: TNotifyEvent);