Fixes: debugger: make "always all" the default for loading debug

information
Details:  the user should make a conscious decision to switch it off
This commit is contained in:
hjk
2009-02-18 14:36:36 +01:00
parent f338c4eed7
commit d3bc2aabe2

View 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();