diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2015-10-09 14:53:24 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2015-10-09 14:53:24 -0300 |
commit | 17ffa29fce56983d8c6e2b78634b4ff36363fb5b (patch) | |
tree | 6708cc4639dd53c4be3c7a6b0e18f13d9010ee2b | |
parent | 453f915ea23fb2ac6191422fce78928606291018 (diff) |
Removed unnecessary assignments in HistoryGraph.
-rw-r--r-- | historygraph.cpp | 2 |
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) |