GUI: temporarily remove keystone from AssembleDialog
This commit is contained in:
parent
9cdd399dde
commit
d2e8f8ab1c
|
@ -28,9 +28,7 @@ AssembleDialog::AssembleDialog(QWidget* parent) :
|
|||
duint setting;
|
||||
if(BridgeSettingGetUint("Engine", "Assembler", &setting))
|
||||
{
|
||||
if(setting == 1)
|
||||
ui->radioKeystone->setChecked(true);
|
||||
else if(setting == 2)
|
||||
else if(setting == 1 || setting == 2)
|
||||
ui->radioAsmjit->setChecked(true);
|
||||
}
|
||||
|
||||
|
@ -188,13 +186,6 @@ void AssembleDialog::on_radioXEDParse_clicked()
|
|||
validateInstruction(ui->lineEdit->text());
|
||||
}
|
||||
|
||||
void AssembleDialog::on_radioKeystone_clicked()
|
||||
{
|
||||
BridgeSettingSetUint("Engine", "Assembler", 1);
|
||||
DbgSettingsUpdated();
|
||||
validateInstruction(ui->lineEdit->text());
|
||||
}
|
||||
|
||||
void AssembleDialog::on_radioAsmjit_clicked()
|
||||
{
|
||||
BridgeSettingSetUint("Engine", "Assembler", 2);
|
||||
|
|
|
@ -42,7 +42,6 @@ private slots:
|
|||
void on_checkBoxKeepSize_clicked(bool checked);
|
||||
void on_checkBoxFillWithNops_clicked(bool checked);
|
||||
void on_radioXEDParse_clicked();
|
||||
void on_radioKeystone_clicked();
|
||||
void on_radioAsmjit_clicked();
|
||||
|
||||
private:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>558</width>
|
||||
<width>484</width>
|
||||
<height>85</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -72,13 +72,6 @@
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="radioKeystone">
|
||||
<property name="text">
|
||||
<string>&Keystone</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="radioAsmjit">
|
||||
<property name="text">
|
||||
|
|
Loading…
Reference in New Issue