debugger: fix recently introduced regression in gotoLocation

don't set the marker when clicking in the breakpoint view
This commit is contained in:
hjk
2010-12-21 15:53:49 +01:00
parent e9f5bb8d77
commit da3a5360df

View File

@@ -903,7 +903,7 @@ void BreakHandler::gotoLocation(BreakpointId id) const
} else {
if (engine)
engine->gotoLocation(
Location(it->markerFileName(), it->markerLineNumber()));
Location(it->markerFileName(), it->markerLineNumber(), false));
}
}