浏览代码

Removing unused property

Source commit: 1ebd191a377149b93d944d91ba209469f632cbed
Martin Prikryl 5 年之前
父节点
当前提交
ebde7c604f

+ 0 - 1
source/packages/filemng/DirView.pas

@@ -833,7 +833,6 @@ begin
   FNotRelative := False;
 
   FFileOperator := TFileOperator.Create(Self);
-  FFileOperator.ProgressTitle := coFileOperatorTitle;
   FFileOperator.Flags := [foAllowUndo, foNoConfirmMkDir];
   FDirOK := True;
   FPath := '';

+ 0 - 1
source/packages/filemng/DriveView.pas

@@ -478,7 +478,6 @@ begin
   end;
 
   FFileOperator := TFileOperator.Create(Self);
-  FFileOperator.ProgressTitle := coFileOperatorTitle;
   FFileOperator.Flags := [foAllowUndo, foNoConfirmMkDir];
 
   FShowVolLabel := True;

+ 0 - 3
source/packages/filemng/FileOperator.pas

@@ -132,7 +132,6 @@ Type
     FLastOperation : TFileOperation;
     fLastFlags     : TFileOperationFlags;
     fCanUndo       : Boolean;
-    FProgressTitle : String;
     FOwner         : TComponent;
     Procedure SetOperation( Value :TFileOperation );
     Function  GetOperation :TFileOperation;
@@ -173,7 +172,6 @@ Type
 {==============================================================}
     Property Operation : TFileOperation  Read GetOperation Write SetOperation Stored false;
     Property Flags : TFileOperationFlags Read GetFlags     Write SetFlags     Stored false;
-    Property ProgressTitle : String      Read FProgressTitle Write FProgressTitle;
     Property WantMappingHandle :Boolean  Read GetWantMappingHandle Write SetWantMappingHandle Stored false;
   end;
 
@@ -299,7 +297,6 @@ begin
  fLastTo   := TStringList.Create;
  fCanUndo  := False;
  FData.fFlags := FOF_ALLOWUNDO OR FOF_NOCONFIRMMKDIR;
- FProgressTitle := SFileOperation;
 end; {Create}