mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
- fixed broken ability to add address breakpoint from console
This commit is contained in:
parent
7f3a9922f5
commit
f0cec37944
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ public class BreakpointManager extends Manager {
|
|||
hint == MIBreakpointChangedEvent.HINT_NONE) && function != null && function.length() > 0) {
|
||||
FunctionLocation location = createFunctionLocation(file, function);
|
||||
newBreakpoint = new FunctionBreakpoint(target, type, location, condition, enabled);
|
||||
} else if (hint == MIBreakpointChangedEvent.HINT_NEW_EVENTBREAKPOINT || EventBreakpoint.getEventArgumentFromMI(miBreakpoint)!=null) {
|
||||
} else if (hint == MIBreakpointChangedEvent.HINT_NEW_EVENTBREAKPOINT || EventBreakpoint.getEventTypeFromMI(miBreakpoint)!=null) {
|
||||
String ctype = EventBreakpoint.getEventTypeFromMI(miBreakpoint);
|
||||
if (ctype != null) {
|
||||
newBreakpoint = new EventBreakpoint(target, ctype, EventBreakpoint
|
||||
|
|
Loading…
Add table
Reference in a new issue