From cccbde05f6b286e51bda8c950c1aa9da15361da9 Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 20 Sep 2014 12:35:29 +0000 Subject: [PATCH] lazutils: wince: fixed compilation git-svn-id: trunk@46265 - --- components/lazutils/winlazfileutils.inc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/lazutils/winlazfileutils.inc b/components/lazutils/winlazfileutils.inc index 5312137567..97b4f10430 100644 --- a/components/lazutils/winlazfileutils.inc +++ b/components/lazutils/winlazfileutils.inc @@ -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));