mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
ADD: GetDisplayFileName() in iCloudDriver
This commit is contained in:
parent
86caadb164
commit
e900156fb1
1 changed files with 6 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ type
|
|||
function GetRootDir(sPath : String): String; override;
|
||||
function IsSystemFile(aFile: TFile): Boolean; override;
|
||||
function IsPathAtRoot(Path: String): Boolean; override;
|
||||
function GetDisplayFileName(aFile: TFile): String; override;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
|
@ -62,5 +63,10 @@ begin
|
|||
end;
|
||||
end;
|
||||
|
||||
function TiCloudDriverFileSource.GetDisplayFileName(aFile: TFile): String;
|
||||
begin
|
||||
Result:= getMacOSDisplayNameFromPath( aFile.FullPath );
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue