Browse Source

* Made FRunning and FExitCode protected

git-svn-id: trunk@8757 -
michael 18 years ago
parent
commit
8127eb0b0f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/fcl-base/src/inc/process.pp

+ 2 - 1
packages/fcl-base/src/inc/process.pp

@@ -56,7 +56,6 @@ Type
     FCurrentDirectory : String;
     FCurrentDirectory : String;
     FDesktop : String;
     FDesktop : String;
     FEnvironment : Tstrings;
     FEnvironment : Tstrings;
-    FExitCode : Cardinal;
     FShowWindow : TShowWindowOptions;
     FShowWindow : TShowWindowOptions;
     FInherithandles : Boolean;
     FInherithandles : Boolean;
     FRunning : Boolean;
     FRunning : Boolean;
@@ -85,6 +84,8 @@ Type
     procedure SetEnvironment(const Value: TStrings);
     procedure SetEnvironment(const Value: TStrings);
     function  PeekExitStatus: Boolean;
     function  PeekExitStatus: Boolean;
   Protected  
   Protected  
+    FRunning : Boolean;
+    FExitCode : Cardinal;
     FInputStream  : TOutputPipeStream;
     FInputStream  : TOutputPipeStream;
     FOutputStream : TInputPipeStream;
     FOutputStream : TInputPipeStream;
     FStderrStream : TInputPipeStream;
     FStderrStream : TInputPipeStream;