forked from qt-creator/qt-creator
debugger: small tweaks to gotoLocation()
This commit is contained in:
@@ -224,9 +224,8 @@ void DisassemblerViewAgent::setFrame(const StackFrame &frame)
|
||||
if (!frame.function.isEmpty() && frame.function != _("??")) {
|
||||
QHash<QString, QString>::ConstIterator it = d->cache.find(frameKey(frame));
|
||||
if (it != d->cache.end()) {
|
||||
QString msg = QString::fromLatin1("Use cache dissassembler for %1 in %2")
|
||||
QString msg = _("Use cache dissassembler for '%1' in '%2'")
|
||||
.arg(frame.function).arg(frame.file);
|
||||
qDebug() << msg;
|
||||
m_manager->showDebuggerOutput(msg);
|
||||
setContents(*it);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user