aboutsummaryrefslogtreecommitdiff
path: root/historygraph.cpp
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-10-09 14:53:24 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-10-09 14:53:24 -0300
commit17ffa29fce56983d8c6e2b78634b4ff36363fb5b (patch)
tree6708cc4639dd53c4be3c7a6b0e18f13d9010ee2b /historygraph.cpp
parent453f915ea23fb2ac6191422fce78928606291018 (diff)
Removed unnecessary assignments in HistoryGraph.
Diffstat (limited to 'historygraph.cpp')
-rw-r--r--historygraph.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/historygraph.cpp b/historygraph.cpp
index 1a1a579..a6706f9 100644
--- a/historygraph.cpp
+++ b/historygraph.cpp
@@ -54,7 +54,6 @@ HistoryGraph::HistoryItemNode::~HistoryItemNode()
if (m_next) {
delete m_next;
- m_next = 0;
}
}
@@ -102,7 +101,6 @@ HistoryGraph::HistoryGraph(QQuickItem *parent)
HistoryGraph::~HistoryGraph()
{
delete m_firstNode;
- m_firstNode = 0;
}
void HistoryGraph::addHistoryItem(const arma::mat &item)