mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-31 16:47:26 +00:00
Radare2 update
This commit is contained in:
parent
abfb29d5c8
commit
d263778ad2
2
radare2
2
radare2
@ -1 +1 @@
|
|||||||
Subproject commit c276ae6c5402b431bd630b00730ed18be84aa0da
|
Subproject commit 7b27528807b5d6ecfac6ef9d0498a8eefbabb31d
|
@ -745,7 +745,7 @@ void CutterCore::setSettings()
|
|||||||
setConfig("scr.interactive", false);
|
setConfig("scr.interactive", false);
|
||||||
|
|
||||||
setConfig("hex.pairs", false);
|
setConfig("hex.pairs", false);
|
||||||
setConfig("asm.cmtcol", 70);
|
setConfig("asm.cmt.col", 70);
|
||||||
setConfig("asm.xrefs", false);
|
setConfig("asm.xrefs", false);
|
||||||
|
|
||||||
setConfig("asm.tabsonce", true);
|
setConfig("asm.tabsonce", true);
|
||||||
@ -815,7 +815,7 @@ QStringList CutterCore::getProjectNames()
|
|||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QStringList ret;
|
QStringList ret;
|
||||||
|
|
||||||
QJsonArray jsonArray = cmdj("Plj").array();
|
QJsonArray jsonArray = cmdj("Pj").array();
|
||||||
for (QJsonValue value : jsonArray)
|
for (QJsonValue value : jsonArray)
|
||||||
ret.append(value.toString());
|
ret.append(value.toString());
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ RelocsWidget::RelocsWidget(MainWindow *main, QAction *action) :
|
|||||||
|
|
||||||
RelocsWidget::~RelocsWidget() {}
|
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());
|
Core()->seek(index.data(RelocsModel::AddressRole).toLongLong());
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ public:
|
|||||||
~RelocsWidget();
|
~RelocsWidget();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_relocsTreeView_doubleClicked(const QModelIndex &index);
|
void on_relocsTableView_doubleClicked(const QModelIndex &index);
|
||||||
void refreshRelocs();
|
void refreshRelocs();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user