diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-17 15:12:57 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-17 15:12:57 +0100 |
commit | 4a9975f012e74022247c3e9e1c143d2b0ea21925 (patch) | |
tree | 701d1fae77e7b406c9b2f70a986bb17258483111 /qtmips_gui | |
parent | 20ad720def253699a843f7c7a89be8a262622d5b (diff) | |
download | qtmips-4a9975f012e74022247c3e9e1c143d2b0ea21925.tar.gz qtmips-4a9975f012e74022247c3e9e1c143d2b0ea21925.tar.bz2 qtmips-4a9975f012e74022247c3e9e1c143d2b0ea21925.zip |
Fix signal for execute protection config in gui
Diffstat (limited to 'qtmips_gui')
-rw-r--r-- | qtmips_gui/newdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtmips_gui/newdialog.cpp b/qtmips_gui/newdialog.cpp index 033d0ce..d463f8d 100644 --- a/qtmips_gui/newdialog.cpp +++ b/qtmips_gui/newdialog.cpp @@ -27,7 +27,7 @@ NewDialog::NewDialog(QWidget *parent, QSettings *settings) : QDialog(parent) { connect(ui->hazard_unit, SIGNAL(clicked(bool)), this, SLOT(hazard_unit_change())); connect(ui->hazard_stall, SIGNAL(clicked(bool)), this, SLOT(hazard_unit_change())); connect(ui->hazard_stall_forward, SIGNAL(clicked(bool)), this, SLOT(hazard_unit_change())); - connect(ui->mem_protec_exec, SIGNAL(clicked(bool)), this, SIGNAL(mem_protec_exec_change(bool))); + connect(ui->mem_protec_exec, SIGNAL(clicked(bool)), this, SLOT(mem_protec_exec_change(bool))); connect(ui->mem_protec_write, SIGNAL(clicked(bool)), this, SLOT(mem_protec_write_change(bool))); connect(ui_cache_p->enabled, SIGNAL(clicked(bool)), this, SLOT(cache_program_change(bool))); |