GUI: fixed a crash in the FlickerThread (closes #1651)
This commit is contained in:
parent
db9f8c845b
commit
7aef027ebc
|
|
@ -284,7 +284,7 @@ void LogView::onAnchorClicked(const QUrl & link)
|
|||
DbgCmdExec(QString("disasm %1").arg(link.fragment()).toUtf8().constData());
|
||||
else
|
||||
{
|
||||
DbgCmdExec(QString("dump %1").arg(link.fragment()).toUtf8().constData());
|
||||
DbgCmdExecDirect(QString("dump %1").arg(link.fragment()).toUtf8().constData());
|
||||
emit Bridge::getBridge()->getDumpAttention();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -420,7 +420,7 @@ void MemoryMapView::stateChangedSlot(DBGSTATE state)
|
|||
|
||||
void MemoryMapView::followDumpSlot()
|
||||
{
|
||||
DbgCmdExec(QString("dump %1").arg(getCellContent(getInitialSelection(), 0)).toUtf8().constData());
|
||||
DbgCmdExecDirect(QString("dump %1").arg(getCellContent(getInitialSelection(), 0)).toUtf8().constData());
|
||||
}
|
||||
|
||||
void MemoryMapView::followDisassemblerSlot()
|
||||
|
|
|
|||
|
|
@ -410,7 +410,7 @@ void SymbolView::symbolFollow()
|
|||
|
||||
void SymbolView::symbolFollowDump()
|
||||
{
|
||||
DbgCmdExec(QString("dump " + mSearchListView->mCurList->getCellContent(mSearchListView->mCurList->getInitialSelection(), 0)).toUtf8().constData());
|
||||
DbgCmdExecDirect(QString("dump " + mSearchListView->mCurList->getCellContent(mSearchListView->mCurList->getInitialSelection(), 0)).toUtf8().constData());
|
||||
}
|
||||
|
||||
void SymbolView::symbolFollowImport()
|
||||
|
|
@ -425,7 +425,7 @@ void SymbolView::symbolFollowImport()
|
|||
}
|
||||
else
|
||||
{
|
||||
DbgCmdExec(QString("dump %1").arg(ToPtrString(addr)).toUtf8().constData());
|
||||
DbgCmdExecDirect(QString("dump %1").arg(ToPtrString(addr)).toUtf8().constData());
|
||||
emit Bridge::getBridge()->getDumpAttention();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue