Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
b193bed0
Commit
b193bed0
authored
11 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
- fixed c'tor call to G4UIExecutive (one extra argument)
parent
01882337
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DDG4/src/Geant4UIManager.cpp
+1
-1
1 addition, 1 deletion
DDG4/src/Geant4UIManager.cpp
with
1 addition
and
1 deletion
DDG4/src/Geant4UIManager.cpp
+
1
−
1
View file @
b193bed0
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment