diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 572157329c6..d6f75bade4e 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -2095,7 +2095,7 @@ void GdbEngine::setBreakpointDataFromOutput(BreakpointData *data, const GdbMi &b } else if (child.hasName("thread")) { data->bpThreadSpec = child.data(); } else if (child.hasName("type")) { - if (child.data() == "breakpoint") + if (child.data().contains("reakpoint")) // "breakpoint", "hw breakpoint" data->type = BreakpointData::BreakpointType; else // FIXME: Incomplete list of cases. data->type = BreakpointData::WatchpointType;