mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Fix for deferred breakpoint.
This commit is contained in:
parent
9797bc9040
commit
f0f94b3965
1 changed files with 1 additions and 2 deletions
|
@ -351,7 +351,6 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
|||
}
|
||||
// A new Libraries loaded, try to set the breakpoints.
|
||||
if (eventList.size() > 0) {
|
||||
boolean breakpointSet = false;
|
||||
ICDIBreakpointManager manager = session.getBreakpointManager();
|
||||
if (manager instanceof BreakpointManager) {
|
||||
BreakpointManager bpMgr = (BreakpointManager)manager;
|
||||
|
@ -458,7 +457,7 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
|||
} catch (MIException e) {
|
||||
}
|
||||
}
|
||||
if (miLevel > 0) {
|
||||
if (miLevel >= 0) {
|
||||
MIStackSelectFrame selectFrame = factory.createMIStackSelectFrame(miLevel);
|
||||
MIExecFinish finish = factory.createMIExecFinish();
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue