1
0
Fork 0
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:
David Inglis 2004-10-21 15:07:54 +00:00
parent 7601c54d55
commit bd562b731b
3 changed files with 3 additions and 3 deletions

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {