diff --git a/radare2 b/radare2 index c276ae6c..7b275288 160000 --- a/radare2 +++ b/radare2 @@ -1 +1 @@ -Subproject commit c276ae6c5402b431bd630b00730ed18be84aa0da +Subproject commit 7b27528807b5d6ecfac6ef9d0498a8eefbabb31d diff --git a/src/Cutter.cpp b/src/Cutter.cpp index 2928f450..5430b22b 100644 --- a/src/Cutter.cpp +++ b/src/Cutter.cpp @@ -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()); diff --git a/src/widgets/RelocsWidget.cpp b/src/widgets/RelocsWidget.cpp index 97b577f2..6f0ee9e9 100644 --- a/src/widgets/RelocsWidget.cpp +++ b/src/widgets/RelocsWidget.cpp @@ -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()); } diff --git a/src/widgets/RelocsWidget.h b/src/widgets/RelocsWidget.h index 25b881c2..070ce984 100644 --- a/src/widgets/RelocsWidget.h +++ b/src/widgets/RelocsWidget.h @@ -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: