Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
5fcc438d
Commit
5fcc438d
authored
Sep 08, 2010
by
Lasse Holmstedt
Browse files
RunConfiguration: Added missing init for copy constructor
parent
03492f24
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/runconfiguration.cpp
View file @
5fcc438d
...
...
@@ -155,7 +155,9 @@ RunConfiguration::RunConfiguration(Target *target, const QString &id) :
}
RunConfiguration
::
RunConfiguration
(
Target
*
target
,
RunConfiguration
*
source
)
:
ProjectConfiguration
(
target
,
source
)
ProjectConfiguration
(
target
,
source
),
m_useCppDebugger
(
source
->
useCppDebugger
()),
m_useQmlDebugger
(
source
->
useQmlDebugger
())
{
Q_ASSERT
(
target
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment