mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 03:46:11 +00:00
Polish Classes Widget
This commit is contained in:
parent
c54f7df3cb
commit
2f0fd91137
@ -2048,7 +2048,7 @@ QList<AnalVTableDescription> CutterCore::getAnalClassVTables(const QString &cls)
|
|||||||
{
|
{
|
||||||
QList<AnalVTableDescription> ret;
|
QList<AnalVTableDescription> ret;
|
||||||
|
|
||||||
RVector *vtables = r_anal_class_base_get_all(core_->anal, cls.toUtf8().constData());
|
RVector *vtables = r_anal_class_vtable_get_all(core_->anal, cls.toUtf8().constData());
|
||||||
if (!vtables) {
|
if (!vtables) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -471,6 +471,8 @@ ClassesWidget::ClassesWidget(MainWindow *main, QAction *action) :
|
|||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
|
ui->classesTreeView->setIconSize(QSize(10, 10));
|
||||||
|
|
||||||
proxy_model = new ClassesSortFilterProxyModel(this);
|
proxy_model = new ClassesSortFilterProxyModel(this);
|
||||||
ui->classesTreeView->setModel(nullptr);
|
ui->classesTreeView->setModel(nullptr);
|
||||||
ui->classesTreeView->sortByColumn(ClassesModel::TYPE, Qt::AscendingOrder);
|
ui->classesTreeView->sortByColumn(ClassesModel::TYPE, Qt::AscendingOrder);
|
||||||
@ -537,7 +539,11 @@ void ClassesWidget::on_classesTreeView_doubleClicked(const QModelIndex &index)
|
|||||||
if (!index.isValid())
|
if (!index.isValid())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
RVA offset = index.data(ClassesModel::OffsetRole).value<RVA>();
|
QVariant offsetData = index.data(ClassesModel::OffsetRole);
|
||||||
|
if(!offsetData.isValid()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
RVA offset = offsetData.value<RVA>();
|
||||||
Core()->seek(offset);
|
Core()->seek(offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user