debugger: remove "debug debugging helper" option

Only useful for the compiled dumpers, and I have not used it for a while.
This commit is contained in:
hjk
2010-11-29 13:52:43 +01:00
parent 78850785c1
commit 40c9b8f2f0
7 changed files with 3 additions and 57 deletions

View File

@@ -586,27 +586,12 @@ void GdbEngine::updateAllClassic()
updateLocals();
}
void GdbEngine::setDebugDebuggingHelpersClassic(const QVariant &on)
{
PRECONDITION;
if (on.toBool()) {
showMessage(_("SWITCHING ON DUMPER DEBUGGING"));
postCommand("set unwindonsignal off");
//FIXME BP: breakByFunction(_("qDumpObjectData440"));
//updateLocals();
} else {
showMessage(_("SWITCHING OFF DUMPER DEBUGGING"));
postCommand("set unwindonsignal on");
}
}
void GdbEngine::setDebuggingHelperStateClassic(DebuggingHelperState s)
{
PRECONDITION;
m_debuggingHelperState = s;
}
void GdbEngine::handleStackListArgumentsClassic(const GdbResponse &response)
{
PRECONDITION;