Skip to content
Snippets Groups Projects
Commit 5fcc438d authored by Lasse Holmstedt's avatar Lasse Holmstedt
Browse files

RunConfiguration: Added missing init for copy constructor

parent 03492f24
No related branches found
No related tags found
No related merge requests found
...@@ -155,7 +155,9 @@ RunConfiguration::RunConfiguration(Target *target, const QString &id) : ...@@ -155,7 +155,9 @@ RunConfiguration::RunConfiguration(Target *target, const QString &id) :
} }
RunConfiguration::RunConfiguration(Target *target, RunConfiguration *source) : RunConfiguration::RunConfiguration(Target *target, RunConfiguration *source) :
ProjectConfiguration(target, source) ProjectConfiguration(target, source),
m_useCppDebugger(source->useCppDebugger()),
m_useQmlDebugger(source->useQmlDebugger())
{ {
Q_ASSERT(target); Q_ASSERT(target);
} }
......
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