Changeset 108
- Timestamp:
- May 6, 2019, 1:41:36 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.pas
r106 r108 666 666 procedure TFormMain.AProjectSaveExecute(Sender: TObject); 667 667 begin 668 if Core.Project.Modified and FileExists UTF8(Core.Project.FileName) then begin668 if Core.Project.Modified and FileExists(Core.Project.FileName) then begin 669 669 FormSourceCode.SynEditSource.Lines.SaveToFile(Core.Project.FileName); 670 670 Core.Project.Modified := False; -
trunk/UTarget.pas
r107 r108 420 420 end; 421 421 if CompilerPath <> '' then begin; 422 if FileExists UTF8(CompilerPath) then422 if FileExists(CompilerPath) then 423 423 try 424 424 Process := TProcess.Create(nil); … … 457 457 'compiled' + DirectorySeparator + Name + DirectorySeparator + 458 458 ExtractFileNameOnly(ProjectFileName) + RunExtension; 459 if not FileExists UTF8(ExecutorPath) then459 if not FileExists(ExecutorPath) then 460 460 raise Exception.Create(Format(SExecutorNotFound, [ExecutorPath])); 461 461 if FileExists(CompiledFile) then
Note:
See TracChangeset
for help on using the changeset viewer.