Changeset 43
- Timestamp:
- Feb 20, 2012, 7:50:23 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Languages/LazFuckIDE.po
r42 r43 4 4 #: tcompiledform.caption 5 5 msgid "Compiled program" 6 msgstr " "6 msgstr "Content-Type: text/plain; charset=UTF-8Content-Type: text/plain; charset=UTF-8Content-Type: text/plain; charset=UTF-8Content-Type: text/plain; charset=UTF-8Content-Type: text/plain; charset=UTF-8" 7 7 8 8 #: tform1.caption -
trunk/Target/UTarget.pas
r41 r43 372 372 try 373 373 Text := FTargetCode; 374 SaveToFile( CompiledFile);374 SaveToFile(UTF8Decode(CompiledFile)); 375 375 finally 376 376 Free; … … 399 399 try 400 400 Process := TProcess.Create(nil); 401 Process.CommandLine := LongFileName(ExecutorPath) + ' ' + LongFileName(CompiledFile); 401 if ExecutorPath <> '' then Process.CommandLine := LongFileName(ExecutorPath) + ' '; 402 Process.CommandLine := Process.CommandLine + LongFileName(CompiledFile); 402 403 Process.Options := [poWaitOnExit]; 403 404 Process.Execute;
Note:
See TracChangeset
for help on using the changeset viewer.