mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 02:15:31 +02:00
update due to debug factroy api change
This commit is contained in:
parent
7601c54d55
commit
bd562b731b
3 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ public class CoreFileLaunchDelegate extends AbstractCLaunchDelegate {
|
|||
iprocess = DebugPlugin.newProcess(launch, process, renderProcessLabel(exePath.toOSString()));
|
||||
}
|
||||
CDIDebugModel.newDebugTarget(launch, project.getProject(), targets[i], renderTargetLabel(debugConfig),
|
||||
iprocess, exeFile, false, false, false);
|
||||
iprocess, exeFile, true, false, false);
|
||||
}
|
||||
} catch (CoreException e) {
|
||||
try {
|
||||
|
|
|
@ -95,7 +95,7 @@ public class LocalAttachLaunchDelegate extends AbstractCLaunchDelegate {
|
|||
ICDITarget[] targets = dsession.getTargets();
|
||||
for (int i = 0; i < targets.length; i++) {
|
||||
CDIDebugModel.newDebugTarget(launch, project.getProject(), targets[i],
|
||||
renderTargetLabel(debugConfig), null, exeFile, true, true);
|
||||
renderTargetLabel(debugConfig), null, exeFile, true, true, false);
|
||||
}
|
||||
} catch (CoreException e) {
|
||||
try {
|
||||
|
|
|
@ -102,7 +102,7 @@ public class LocalRunLaunchDelegate extends AbstractCLaunchDelegate {
|
|||
iprocess = DebugPlugin.newProcess(launch, process, renderProcessLabel(exePath.toOSString()));
|
||||
}
|
||||
CDIDebugModel.newDebugTarget(launch, project.getProject(), targets[i], renderTargetLabel(debugConfig),
|
||||
iprocess, exeFile, true, false, stopInMain);
|
||||
iprocess, exeFile, true, false, stopInMain, true);
|
||||
}
|
||||
} catch (CoreException e) {
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue