diff options
Diffstat (limited to 'node')
| -rw-r--r-- | node/paintnode.cpp | 2 | ||||
| -rw-r--r-- | node/sortresult.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/node/paintnode.cpp b/node/paintnode.cpp index ad13c52..02a9358 100644 --- a/node/paintnode.cpp +++ b/node/paintnode.cpp @@ -97,7 +97,7 @@ void PainterNode::run(ExecutionNode* previous) } Result* PainterNode::getResult() { - m_previousNode->getResult(); + return m_previousNode->getResult(); } QString PainterNode::toString(bool wl) const diff --git a/node/sortresult.cpp b/node/sortresult.cpp index 0bf531c..f72d884 100644 --- a/node/sortresult.cpp +++ b/node/sortresult.cpp @@ -96,7 +96,7 @@ void SortResultNode::run(ExecutionNode* node) } else { - m_result = node->getResult(); + //m_result = node->getResult(); //m_errors.append(DIE_RESULT_EXPECTED); } |