OSDN Git Service

Fixes: debugger: make "always all" the default for loading debug
authorhjk <qtc-committer@nokia.com>
Wed, 18 Feb 2009 13:36:36 +0000 (14:36 +0100)
committerhjk <qtc-committer@nokia.com>
Wed, 18 Feb 2009 13:36:36 +0000 (14:36 +0100)
information
Details:  the user should make a conscious decision to switch it off

src/plugins/debugger/debuggerplugin.cpp

index c313b05..89e8e59 100644 (file)
@@ -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();