diff options
author | Ulf Hermann <ulf.hermann@qt.io> | 2018-07-18 15:41:09 +0200 |
---|---|---|
committer | Ulf Hermann <ulf.hermann@qt.io> | 2018-07-24 10:38:47 +0000 |
commit | 522ba308978ba52d09930a3ea8177f7f86c7ae63 (patch) | |
tree | 0b9571c339c3d256b0c7044b382e76c78a90e469 /src/plugins/debugger/qml/qmlv8debuggerclientconstants.h | |
parent | c23980c72a496472025eb6225f1ab96ce51b7b1f (diff) | |
download | qt-creator-522ba308978ba52d09930a3ea8177f7f86c7ae63.tar.gz |
V4 Debugger: Use changebreakpoint command if available
Newer versions of QML will support proper changing of break points, we
won't need to work around it anymore.
Task-number: QTCREATORBUG-20795
Change-Id: Idb5aaeb8ea59c7d2fd7c924e336ea259d3573d3d
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlv8debuggerclientconstants.h')
-rw-r--r-- | src/plugins/debugger/qml/qmlv8debuggerclientconstants.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h index 90c585b8e3..3056dd74f9 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h +++ b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h @@ -73,6 +73,7 @@ const char SCOPE[] = "scope"; const char SCRIPTS[] = "scripts"; const char SETBREAKPOINT[] = "setbreakpoint"; const char CLEARBREAKPOINT[] = "clearbreakpoint"; +const char CHANGEBREAKPOINT[] = "changebreakpoint"; const char SETEXCEPTIONBREAK[] = "setexceptionbreak"; const char VERSION[] = "version"; const char DISCONNECT[] = "disconnect"; |