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));