From 090110e1d847a412de8da18cf84a5733275005a3 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 2 Jun 2020 14:16:36 +0200 Subject: [PATCH] Debugger: Fix passexception_s_ for GDB CLI The intention was to always show errors, as this is likely an error in the dumpers themselves. The case of operating on uninitialized data is rather rare in the manual use case here. Change-Id: I08874e302b402be94f760f744e82e127855dd16f Reviewed-by: Christian Stenger --- share/qtcreator/debugger/gdbbridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py index 35fa8f6a962..ae20b57ada8 100644 --- a/share/qtcreator/debugger/gdbbridge.py +++ b/share/qtcreator/debugger/gdbbridge.py @@ -1476,7 +1476,7 @@ class CliDumper(Dumper): args = {} args['fancy'] = 1 - args['passexception'] = 1 + args['passexceptions'] = 1 args['autoderef'] = 1 args['qobjectnames'] = 1 args['varlist'] = name