aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/mainwindow.cpp
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-11 15:09:10 +0100
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-11 15:09:10 +0100
commit32084b4f5dfbfa2f653f55cfa514317c4b065b1e (patch)
treea5a30b51a71aa662b5bc34e96d6f6c8b6ee90338 /qtmips_gui/mainwindow.cpp
parent20a381e4ba81777b2ad2d9cc988b990ca2ed0f55 (diff)
downloadqtmips-32084b4f5dfbfa2f653f55cfa514317c4b065b1e.tar.gz
qtmips-32084b4f5dfbfa2f653f55cfa514317c4b065b1e.tar.bz2
qtmips-32084b4f5dfbfa2f653f55cfa514317c4b065b1e.zip
Converted program listing to be QTableView based.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_gui/mainwindow.cpp')
-rw-r--r--qtmips_gui/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtmips_gui/mainwindow.cpp b/qtmips_gui/mainwindow.cpp
index a520f9d..90d6911 100644
--- a/qtmips_gui/mainwindow.cpp
+++ b/qtmips_gui/mainwindow.cpp
@@ -145,7 +145,7 @@ void MainWindow::create_core(const machine::MachineConfig &config) {
connect(corescene, SIGNAL(request_registers()), this, SLOT(show_registers()));
connect(corescene, SIGNAL(request_program_memory()), this, SLOT(show_program()));
connect(corescene, SIGNAL(request_data_memory()), this, SLOT(show_memory()));
- connect(corescene, SIGNAL(request_jump_to_program_counter(std::uint32_t)), program, SLOT(jump_to_pc(std::uint32_t)));
+ connect(corescene, SIGNAL(request_jump_to_program_counter(std::uint32_t)), program, SIGNAL(jump_to_pc(std::uint32_t)));
connect(corescene, SIGNAL(request_cache_program()), this, SLOT(show_cache_program()));
connect(corescene, SIGNAL(request_cache_data()), this, SLOT(show_cache_data()));
// Connect signal from break to machine pause