From 628b14540a0685fd08c9a240be2cfe0b27c8f4f9 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Wed, 18 Feb 2009 14:36:36 +0100
Subject: [PATCH] Fixes:    debugger: make "always all" the default for loading
 debug information Details:  the user should make a conscious decision to
 switch it off

---
 src/plugins/debugger/debuggerplugin.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index c313b0592e7..89e8e59c69b 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -943,11 +943,11 @@ void DebuggerPlugin::readSettings()
     m->m_useToolTips      = s->value("UseToolTips", false).toBool();
 
     m->m_pluginAllBreakpoints =
-        s->value("AllPluginBreakpoints", false).toBool();
+        s->value("AllPluginBreakpoints", true).toBool();
     m->m_pluginSelectedBreakpoints =
         s->value("SelectedPluginBreakpoints", false).toBool();
     m->m_pluginNoBreakpoints =
-        s->value("NoPluginBreakpoints", true).toBool();
+        s->value("NoPluginBreakpoints", false).toBool();
     m->m_pluginSelectedBreakpointsPattern =
         s->value("SelectedPluginBreakpointsPattern").toString();
 
-- 
GitLab