From 25d75c7f9032365dd9d71d1e197b79e6264f6689 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Fri, 16 Oct 2009 11:00:09 +0200
Subject: [PATCH] debugger: allow fancy/non-fancy mode for new dumpers

---
 src/plugins/debugger/gdb/gdbengine.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 13813be7c4c..acb1d1ac88e 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -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 {
-- 
GitLab