debugger: disable 'continue' as woraround for failing 'step'

This commit is contained in:
hjk
2010-01-11 17:56:05 +01:00
parent 9ac4a4e652
commit 87d13230c1
2 changed files with 17 additions and 3 deletions

View File

@@ -3631,6 +3631,10 @@ void GdbEngine::updateLocals(const QVariant &cookie)
expanded.chop(1);
QByteArray watchers;
if (!m_toolTipExpression.isEmpty())
watchers += m_toolTipExpression.toLatin1()
+ "#" + tooltipINameForExpression(m_toolTipExpression.toLatin1());
QHash<QByteArray, int> watcherNames = handler->watcherNames();
QHashIterator<QByteArray, int> it(watcherNames);
while (it.hasNext()) {
@@ -3642,9 +3646,6 @@ void GdbEngine::updateLocals(const QVariant &cookie)
else
watchers += it.key() + "#watch." + QByteArray::number(it.value());
}
if (!m_toolTipExpression.isEmpty())
watchers += "##" + m_toolTipExpression.toLatin1()
+ "#" + tooltipINameForExpression(m_toolTipExpression.toLatin1());
QByteArray options;
if (theDebuggerBoolSetting(UseDebuggingHelpers))