Added advanced options aao and avrr to the initial options dialog (#1513)

This commit is contained in:
Philip Nelson 2019-05-10 12:47:09 -04:00 committed by Itay Cohen
parent cda24bfc53
commit c95d6bd174
2 changed files with 26 additions and 0 deletions

View File

@ -197,6 +197,12 @@ QList<QString> InitialOptionsDialog::getSelectedAdvancedAnalCmds() const
if (ui->aab_basicblocks->isChecked()) { if (ui->aab_basicblocks->isChecked()) {
advanced << "aab"; advanced << "aab";
} }
if (ui->aao_objc->isChecked()) {
advanced << "aao";
}
if (ui->avrr_vtables->isChecked()) {
advanced << "avrr";
}
if (ui->aan_rename->isChecked()) { if (ui->aan_rename->isChecked()) {
advanced << "aan"; advanced << "aan";
} }

View File

@ -347,6 +347,26 @@
</property> </property>
</widget> </widget>
</item> </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> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">