aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-05-03 17:20:54 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-05-04 08:21:22 +0000
commit73a620559749cb636766ae7f94a32e0cc7cdb6e7 (patch)
tree9a6d773a6ca989b3998e243adb582e49397ab594 /src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h
parent02d9ede53916663ea527aec3c3c9ae3a75df7c07 (diff)
V4 debugger: Properly count break points
We cannot just take the number of active breakpoints as ID for the next one. It's possible to remove breakpoints after all. Fixes: QTBUG-93404 Change-Id: Icde7a8e47c740e930f2313ffd9034b00033a54aa Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 7f12cf3346d65d0bff78fff8000ed519fbb921ba) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h')
-rw-r--r--src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h b/src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h
index ccaf76b269..58222deb58 100644
--- a/src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h
+++ b/src/plugins/qmltooling/qmldbg_debugger/qv4debuggeragent.h
@@ -93,6 +93,7 @@ private:
};
QHash<int, BreakPoint> m_breakPoints;
+ int m_lastBreakPointId = 0;
bool m_breakOnThrow;
QV4DebugServiceImpl *m_debugService;
};