summaryrefslogtreecommitdiff
path: root/UEngines.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-12 12:16:57 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-12 12:16:57 +0200
commit928e2dc79b46a455ef0c0096ddf40682e07b4a27 (patch)
tree85cf08ae19bdd5ac44261802b2e16972cc38e792 /UEngines.pas
parentc29edff595cff9d43a607c15b5af6e2ec101263a (diff)
downloadtuxcmd-0.6.53.tar.xz
Implement VFS question and password callbacksv0.6.53
Diffstat (limited to 'UEngines.pas')
-rw-r--r--UEngines.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/UEngines.pas b/UEngines.pas
index 5121947..8e8a0b8 100644
--- a/UEngines.pas
+++ b/UEngines.pas
@@ -83,7 +83,7 @@ type
destructor Destroy; override;
function GetListing(var List: TList; const AddDotFiles: boolean): integer; overload; virtual; abstract; // Returns errorcode
function GetListing(var List: TList; const AddDotFiles: boolean; APath: string): integer; overload; virtual; abstract; // Returns errorcode
- function ChangeDir(const NewPath: string; const ShowProgress: boolean = True): integer; virtual; abstract; // Returns errorcode
+ function ChangeDir(const NewPath: string): integer; virtual; abstract; // Returns errorcode
function ExplicitChDir(const NewPath: string): integer; virtual; abstract; // Returns errorcode
function GetFileSystemSize: Int64; overload; virtual; abstract;
function GetFileSystemSize(const APath: string): Int64; overload; virtual; abstract;
@@ -136,7 +136,7 @@ type
destructor Destroy; override;
function GetListing(var List: TList; const AddDotFiles: boolean): integer; override;
function GetListing(var List: TList; const AddDotFiles: boolean; APath: string): integer; override;
- function ChangeDir(const NewPath: string; const ShowProgress: boolean = True): integer; override;
+ function ChangeDir(const NewPath: string): integer; override;
function ExplicitChDir(const NewPath: string): integer; override;
function GetFileSystemSize: Int64; override;
function GetFileSystemSize(const APath: string): Int64; override;
@@ -360,7 +360,7 @@ begin
Result := GetListing(List, AddDotFiles, FPath);
end;
-function TLocalTreeEngine.ChangeDir(const NewPath: string; const ShowProgress: boolean = True): integer;
+function TLocalTreeEngine.ChangeDir(const NewPath: string): integer;
var APath: string;
Handle : PDIR;
begin