debugger: allow fancy/non-fancy mode for new dumpers

This commit is contained in:
hjk
2009-10-16 11:00:09 +02:00
parent 73aa3e2164
commit 25d75c7f90

View File

@@ -3381,7 +3381,9 @@ void GdbEngine::updateLocals()
if (isSynchroneous()) {
QStringList expanded = m_manager->watchHandler()->expandedINames().toList();
postCommand(_("bb %1").arg(expanded.join(_(","))),
postCommand(_("bb %1 %2")
.arg(int(theDebuggerBoolSetting(UseDebuggingHelpers)))
.arg(expanded.join(_(","))),
WatchUpdate, CB(handleStackFrame1));
postCommand(_("p 0"), WatchUpdate, CB(handleStackFrame2));
} else {