* Changed TExternalAssembler.CreateSmartLinkPath to use ansistrings (TPathStr), like the rest of file handling routines do.

git-svn-id: trunk@23214 -
This commit is contained in:
sergei 2012-12-23 14:11:27 +00:00
parent 27c626245b
commit d967566a37

View File

@ -66,7 +66,7 @@ interface
}
TExternalAssembler=class(TAssembler)
private
procedure CreateSmartLinkPath(const s:string);
procedure CreateSmartLinkPath(const s:TPathStr);
protected
{outfile}
AsmSize,
@ -291,7 +291,7 @@ Implementation
end;
procedure TExternalAssembler.CreateSmartLinkPath(const s:string);
procedure TExternalAssembler.CreateSmartLinkPath(const s:TPathStr);
procedure DeleteFilesWithExt(const AExt:string);
var
@ -307,7 +307,7 @@ Implementation
end;
var
hs : string;
hs : TPathStr;
begin
if PathExists(s,false) then
begin