Import Geant4 10.6.2 source tree
This commit is contained in:
@@ -16,6 +16,9 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
19 February, 2020 M. Asai (intercoms-V10-05-10)
|
||||
- Accept null string as an alias value. Addressing bug report #2208.
|
||||
|
||||
26 November, 2019 G. Cosmo (intercoms-V10-05-09)
|
||||
- Fixed more cases of implicit type conversions from size_t to G4int.
|
||||
|
||||
|
||||
@@ -424,11 +424,10 @@ void G4UIcontrolMessenger::SetNewValue(G4UIcommand * command,G4String newValue)
|
||||
command->ResetFailure();
|
||||
if(std::getenv(newValue))
|
||||
{
|
||||
G4String st = "/control/alias ";
|
||||
st += newValue;
|
||||
G4String st = newValue;
|
||||
st += " ";
|
||||
st += std::getenv(newValue);
|
||||
UI->ApplyCommand(st);
|
||||
UI->SetAlias(st.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user