1
0
Fork 0

GUI: fixed a crash in the FlickerThread (closes #1651)

This commit is contained in:
mrexodia 2017-07-25 16:19:06 +02:00
parent db9f8c845b
commit 7aef027ebc
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
3 changed files with 4 additions and 4 deletions

View File

@ -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();
}
}

View File

@ -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()

View File

@ -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();
}
}