Debugger: Fix BreakpointItem::needsChange

Change-Id: I75680eddb7a6c2ba23148b66cf8dfcc08b07eca2
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-06-07 09:28:40 +02:00
parent be0a129543
commit 2d128e9c70

View File

@@ -1873,6 +1873,8 @@ bool BreakpointItem::needsChange() const
return true;
if (oparams.type == BreakpointByFileAndLine && oparams.textPosition != m_parameters.textPosition)
return true;
if (oparams.pathUsage != m_parameters.pathUsage)
return true;
// FIXME: Too strict, functions may have parameter lists, or not.
// if (m_params.type == BreakpointByFunction && m_params.functionName != m_response.functionName)
// return true;