Changeset 108 for trunk/UTarget.pas


Ignore:
Timestamp:
May 6, 2019, 1:41:36 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Do not use old UTF8 functions variants.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTarget.pas

    r107 r108  
    420420  end;
    421421  if CompilerPath <> '' then begin;
    422     if FileExistsUTF8(CompilerPath) then
     422    if FileExists(CompilerPath) then
    423423    try
    424424      Process := TProcess.Create(nil);
     
    457457    'compiled' + DirectorySeparator + Name + DirectorySeparator +
    458458    ExtractFileNameOnly(ProjectFileName) + RunExtension;
    459   if not FileExistsUTF8(ExecutorPath) then
     459  if not FileExists(ExecutorPath) then
    460460    raise Exception.Create(Format(SExecutorNotFound, [ExecutorPath]));
    461461  if FileExists(CompiledFile) then
Note: See TracChangeset for help on using the changeset viewer.