debugger: update stack view after manually loading modules

Task-number: QTCREATORBUG-3427
This commit is contained in:
hjk
2010-12-21 12:41:34 +01:00
parent 6b13434a45
commit 550a85a432

View File

@@ -2618,12 +2618,16 @@ void GdbEngine::loadSymbols(const QString &moduleName)
// FIXME: gdb does not understand quoted names here (tested with 6.8)
postCommand("sharedlibrary " + dotEscape(moduleName.toLocal8Bit()));
reloadModulesInternal();
reloadStack(true);
updateLocals();
}
void GdbEngine::loadAllSymbols()
{
postCommand("sharedlibrary .*");
reloadModulesInternal();
reloadStack(true);
updateLocals();
}
void GdbEngine::requestModuleSymbols(const QString &moduleName)