Browse Source

* 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 -

Jonas Maebe 16 years ago
parent
commit
da8355c830
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/fcl-net/src/servlets.pp

+ 3 - 1
packages/fcl-net/src/servlets.pp

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