Skip to content
Snippets Groups Projects
Commit b193bed0 authored by Frank Gaede's avatar Frank Gaede
Browse files

- fixed c'tor call to G4UIExecutive (one extra argument)

parent 01882337
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ G4VisManager* Geant4UIManager::startVis() {
G4UIExecutive* Geant4UIManager::startUI() {
G4UIExecutive* ui = 0;
const char* args[] = {"DDG4","",""};
ui = new G4UIExecutive(1,(char**)args,m_sessionType.c_str());
ui = new G4UIExecutive(1,(char**)args) ; //,m_sessionType.c_str());
return ui;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment