* made FPathInfo field of TServletRequest protected instead of private,

because it's exposed by a property in a derived class

git-svn-id: trunk@13793 -
This commit is contained in:
Jonas Maebe 2009-10-02 13:42:30 +00:00
parent 63b8ff87c8
commit da8355c830

View File

@ -35,8 +35,10 @@ type
TServletRequest = class
private
FInputStream: TStream;
FScheme, FPathInfo: String;
FScheme: String;
protected
FPathInfo: String;
function GetContentLength: Integer; virtual; abstract;
function GetContentType: String; virtual; abstract;
function GetProtocol: String; virtual; abstract;