From b193bed0fee25eda3ec541188b79e3cf7d051037 Mon Sep 17 00:00:00 2001 From: Frank Gaede <frank.gaede@desy.de> Date: Thu, 19 Dec 2013 10:02:34 +0000 Subject: [PATCH] - fixed c'tor call to G4UIExecutive (one extra argument) --- DDG4/src/Geant4UIManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDG4/src/Geant4UIManager.cpp b/DDG4/src/Geant4UIManager.cpp index 89be211a9..28a4723fb 100644 --- a/DDG4/src/Geant4UIManager.cpp +++ b/DDG4/src/Geant4UIManager.cpp @@ -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; } -- GitLab