mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-31 00:35:05 +00:00
Added advanced options aao and avrr to the initial options dialog (#1513)
This commit is contained in:
parent
cda24bfc53
commit
c95d6bd174
@ -197,6 +197,12 @@ QList<QString> InitialOptionsDialog::getSelectedAdvancedAnalCmds() const
|
||||
if (ui->aab_basicblocks->isChecked()) {
|
||||
advanced << "aab";
|
||||
}
|
||||
if (ui->aao_objc->isChecked()) {
|
||||
advanced << "aao";
|
||||
}
|
||||
if (ui->avrr_vtables->isChecked()) {
|
||||
advanced << "avrr";
|
||||
}
|
||||
if (ui->aan_rename->isChecked()) {
|
||||
advanced << "aan";
|
||||
}
|
||||
|
@ -347,6 +347,26 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="aao_objc">
|
||||
<property name="text">
|
||||
<string> Analyze all objc references (aao)</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="avrr_vtables">
|
||||
<property name="text">
|
||||
<string> Recover class information (avrr)</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
|
Loading…
Reference in New Issue
Block a user