debugger: small tweaks to gotoLocation()

This commit is contained in:
hjk
2009-10-02 12:31:19 +02:00
parent a8430f3382
commit 99bdc54199
4 changed files with 15 additions and 24 deletions

View File

@@ -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;