diff options
author | hjk <hjk@theqtcompany.com> | 2015-10-08 16:19:57 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@theqtcompany.com> | 2015-10-09 05:19:45 +0000 |
commit | 525c33f9991766342b41a0518b534836dc60ed69 (patch) | |
tree | 33f0bb24beeae02eb71e85c46e08943a033f0133 /src/plugins/debugger/debuggeractions.cpp | |
parent | ea39476ef2c0017f54021693ba545117ad53afa6 (diff) | |
download | qt-creator-525c33f9991766342b41a0518b534836dc60ed69.tar.gz |
Debugger: Infrastructure for reworked native mixed debugging
- Remove old experimental native mixed approach.
- Move some common stack parsing to Stackhandler.
- Mark gdbbridge.py debug output explicitly to remove it
from actual reponse handling
New native mixed needs QtDeclarative changes and
QTC_DEBUGGER_NATIVE_MIXED=1 for now.
Change-Id: I09eed1da51cea878636d36756015b7bfaed34203
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index bd025d77a2..b1d7e193dc 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -185,18 +185,6 @@ DebuggerSettings::DebuggerSettings() insertItem(OperateByInstruction, item); item = new SavedAction(this); - item->setText(tr("Native Mixed Mode")); - item->setCheckable(true); - item->setDefaultValue(true); - item->setIcon(QIcon(QLatin1String(Core::Constants::ICON_LINK))); - item->setToolTip(tr("<p>This switches the debugger to native-mixed " - "operation mode. In this mode, stepping and data display will " - "be handled by the native debugger backend (GDB, LLDB or CDB) " - "for C++, QML and JS sources.")); - item->setIconVisibleInMenu(false); - insertItem(OperateNativeMixed, item); - - item = new SavedAction(this); item->setText(tr("Dereference Pointers Automatically")); item->setCheckable(true); item->setDefaultValue(true); |