mirror of
https://github.com/nasa/trick.git
synced 2025-02-21 01:31:25 +00:00
Merge branch 'master' of https://github.com/nasa/Trick
This commit is contained in:
commit
fc79d7a36d
3
trick_models/Wheelbot/Graphics/.gitignore
vendored
Normal file
3
trick_models/Wheelbot/Graphics/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
build
|
||||
dist
|
||||
manifest
|
@ -733,7 +733,7 @@ public abstract class TrickApplication extends SingleFrameApplication implements
|
||||
}
|
||||
try {
|
||||
ProcessBuilder process = new ProcessBuilder(UIUtils.getTrickBin() +
|
||||
File.separator + executable, arguments);
|
||||
File.separator + "trick-" + executable, arguments);
|
||||
process.redirectOutput(ProcessBuilder.Redirect.INHERIT);
|
||||
process.redirectError(ProcessBuilder.Redirect.INHERIT);
|
||||
process.start();
|
||||
|
@ -57,7 +57,7 @@ public class SimSnifferApplication extends TrickApplication {
|
||||
if (row != -1) {
|
||||
SimulationInformation simulationInformation =
|
||||
simulations.get(simTable.convertRowIndexToModel(row));
|
||||
launchTrickApplication("sim_control",
|
||||
launchTrickApplication("simcontrol",
|
||||
simulationInformation.machine + " " +
|
||||
simulationInformation.noHandshakePort);
|
||||
}
|
||||
|
@ -58,9 +58,9 @@ int Trick::MemoryManager::add_attr_info( std::string & user_type_string , ATTRIB
|
||||
std::replace( user_type_name.begin(), user_type_name.end(), '<', '_') ;
|
||||
std::replace( user_type_name.begin(), user_type_name.end(), ',', '_') ;
|
||||
std::replace( user_type_name.begin(), user_type_name.end(), '*', ' ') ;
|
||||
spos = user_type_name.find("const") ;
|
||||
spos = user_type_name.find("const ") ;
|
||||
if ( spos != std::string::npos ) {
|
||||
user_type_name.erase( spos , spos + 5) ;
|
||||
user_type_name.erase( spos , spos + 6) ;
|
||||
}
|
||||
spos = user_type_name.find("[") ;
|
||||
if ( spos != std::string::npos ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user