From cc4943a2405777cde3ec39ea6402b6adc7cf7329 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 25 Jun 2014 17:13:29 +0200 Subject: [PATCH] Debugger: Force reset of "Load system GDB pretty printer" option Using them still bites often. Since we can't distinguish between setups run first with Creator 3.1 (where the option was 'on' by default) and people who actively selected that at another time, reset for all. People _needing_ them can opt in again. There won't be many, if at all. Change-Id: I68c64d71f0c8ab4a3e6c73cc91481a7d3f9ef6b9 Reviewed-by: Eike Ziller --- src/plugins/debugger/debuggeractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index 976453e5d27..4fbbecb1ba6 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -360,7 +360,7 @@ DebuggerSettings::DebuggerSettings() insertItem(LoadGdbInit, item); item = new SavedAction(this); - item->setSettingsKey(debugModeGroup, QLatin1String("LoadGdbDumpers")); + item->setSettingsKey(debugModeGroup, QLatin1String("LoadGdbDumpers1")); item->setDefaultValue(QString()); item->setCheckable(true); item->setDefaultValue(true);