diff options
author | Friedemann Kleint <Friedemann.Kleint@digia.com> | 2014-02-07 18:10:02 +0100 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-02-25 16:48:06 +0100 |
commit | e64fefdbc466b1247a2cee68617ad904d2388712 (patch) | |
tree | 680e4d22a99cf6244904edf3f440d8e0d549f319 /src/plugins/debugger/debuggerconstants.h | |
parent | 27ae878040153904826a3b99459967e209612cde (diff) | |
download | qt-creator-e64fefdbc466b1247a2cee68617ad904d2388712.tar.gz |
Add a stack window menu entry to display QML stack frame.
Add language field to stack frame.
Add virtual for loading QML stack invoked by stack window
context menu, implement for CDB, GDB.
Task-number: QTCREATORBUG-11144
Change-Id: Ic39be3978b40d96ed18cb69a8355296ec572ece7
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/debuggerconstants.h')
-rw-r--r-- | src/plugins/debugger/debuggerconstants.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerconstants.h b/src/plugins/debugger/debuggerconstants.h index 8a8e9d3d25..cd3eb25159 100644 --- a/src/plugins/debugger/debuggerconstants.h +++ b/src/plugins/debugger/debuggerconstants.h @@ -161,7 +161,8 @@ enum DebuggerCapabilities RunToLineCapability = 0x800000, MemoryAddressCapability = 0x1000000, ShowModuleSectionsCapability = 0x200000, - WatchComplexExpressionsCapability = 0x400000 // Used to filter out challenges for cdb. + WatchComplexExpressionsCapability = 0x400000, // Used to filter out challenges for cdb. + AdditionalQmlStackCapability = 0x800000 // C++ debugger engine is able to retrieve QML stack as well. }; enum LogChannel |