lazutils: wince: fixed compilation

git-svn-id: trunk@46265 -
This commit is contained in:
mattias 2014-09-20 12:35:29 +00:00
parent 256196bcd2
commit cccbde05f6

View File

@ -146,6 +146,13 @@ begin
Result:=Filename;
end;
function GetPhysicalFilename(const Filename: string;
OnError: TPhysicalFilenameOnError): string;
begin
if OnError=pfeEmpty then ;
Result:=Filename;
end;
// ******** Start of AnsiString specific implementations ************
{$ifndef WinCE}
@ -250,13 +257,6 @@ begin
Rslt.Name:=SysToUTF8(Rslt.Name);
end;
function GetPhysicalFilename(const Filename: string;
OnError: TPhysicalFilenameOnError): string;
begin
if OnError=pfeEmpty then ;
Result:=Filename;
end;
function GetAppConfigDirAnsi(Global: Boolean; Create: boolean = false): string;
begin
Result := SysToUTF8(SysUtils.GetAppConfigDir(Global));