Radare2 update

This commit is contained in:
xarkes 2018-04-11 11:44:01 +02:00
parent abfb29d5c8
commit d263778ad2
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit c276ae6c5402b431bd630b00730ed18be84aa0da
Subproject commit 7b27528807b5d6ecfac6ef9d0498a8eefbabb31d

View File

@ -745,7 +745,7 @@ void CutterCore::setSettings()
setConfig("scr.interactive", false);
setConfig("hex.pairs", false);
setConfig("asm.cmtcol", 70);
setConfig("asm.cmt.col", 70);
setConfig("asm.xrefs", false);
setConfig("asm.tabsonce", true);
@ -815,7 +815,7 @@ QStringList CutterCore::getProjectNames()
CORE_LOCK();
QStringList ret;
QJsonArray jsonArray = cmdj("Plj").array();
QJsonArray jsonArray = cmdj("Pj").array();
for (QJsonValue value : jsonArray)
ret.append(value.toString());

View File

@ -86,7 +86,7 @@ RelocsWidget::RelocsWidget(MainWindow *main, QAction *action) :
RelocsWidget::~RelocsWidget() {}
void RelocsWidget::on_relocsTreeView_doubleClicked(const QModelIndex &index)
void RelocsWidget::on_relocsTableView_doubleClicked(const QModelIndex &index)
{
Core()->seek(index.data(RelocsModel::AddressRole).toLongLong());
}

View File

@ -45,7 +45,7 @@ public:
~RelocsWidget();
private slots:
void on_relocsTreeView_doubleClicked(const QModelIndex &index);
void on_relocsTableView_doubleClicked(const QModelIndex &index);
void refreshRelocs();
private: