Changeset 14985 for trunk/FACT++/src
- Timestamp:
- 03/04/13 20:15:33 (12 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/RemoteControl.cc
r14674 r14985 54 54 string RemoteConsole::GetUpdatePrompt() const 55 55 { 56 if (fImp->GetCurrentState()>=3) 57 return ""; 58 56 59 // If we are continously flushing the buffer omit the buffer size 57 60 // If we are buffering show the buffer size -
trunk/FACT++/src/RemoteControl.h
r14974 r14985 379 379 lout << " " "<imeout> A timeout in millisenconds how long to wait (e.g. 500)\n"; 380 380 lout << " " "<label> A label (number) until which everything is skipped in case of timeout\n"; 381 lout << kBold << " .js file " << kReset << "Execute a JavaScript\n"; 382 if (!StateMachineDimControl::fIsServer) 383 lout << kBold << " .java " << kReset << "Start JavaScript interpreter\n"; 381 384 lout << endl; 382 385 return true; … … 436 439 T::Lock(); 437 440 JsRun(opt, data); 441 T::Unlock(); 442 443 return true; 444 } 445 446 if (str==".java" && !StateMachineDimControl::fIsServer) 447 { 448 T::fScript = "java"; 449 450 T::Lock(); 451 JsRun(""); 438 452 T::Unlock(); 439 453
Note:
See TracChangeset
for help on using the changeset viewer.