aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview/alu.cpp
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-07-01 00:12:52 +0200
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-07-01 00:12:52 +0200
commit3620538812a9df490ace6b3adf8bd120b7a0027b (patch)
tree884483c7d6e9c903b1499a6b702cd1d8551f1fd0 /qtmips_gui/coreview/alu.cpp
parent2408ca900657fdb81f85092a0612aeb6217fbe0f (diff)
downloadqtmips-3620538812a9df490ace6b3adf8bd120b7a0027b.tar.gz
qtmips-3620538812a9df490ace6b3adf8bd120b7a0027b.tar.bz2
qtmips-3620538812a9df490ace6b3adf8bd120b7a0027b.zip
Fix memory leakages which repeat during program operation.
There are some singletons left which are allocated/created during main window content population. Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_gui/coreview/alu.cpp')
-rw-r--r--qtmips_gui/coreview/alu.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/qtmips_gui/coreview/alu.cpp b/qtmips_gui/coreview/alu.cpp
index e1494cb..5494b3f 100644
--- a/qtmips_gui/coreview/alu.cpp
+++ b/qtmips_gui/coreview/alu.cpp
@@ -58,6 +58,13 @@ coreview::Alu::Alu() : QGraphicsItem(nullptr), name("ALU", this) {
setPos(x(), y()); // set connector's position
}
+coreview::Alu::~Alu() {
+ delete con_in_a;
+ delete con_in_b;
+ delete con_out;
+ delete con_ctl;
+}
+
QRectF coreview::Alu::boundingRect() const {
return QRectF(-PENW / 2, -PENW / 2, WIDTH + PENW, HEIGHT + PENW);
}