diff options
Diffstat (limited to 'node')
| -rw-r--r-- | node/sortresult.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/node/sortresult.cpp b/node/sortresult.cpp index 8bb19b4..4111328 100644 --- a/node/sortresult.cpp +++ b/node/sortresult.cpp @@ -12,6 +12,7 @@ SortResultNode::SortResultNode() } void SortResultNode::run(ExecutionNode* node) { + qDebug() << "SortResultNode node"; if(NULL==node) { return; @@ -30,7 +31,6 @@ void SortResultNode::run(ExecutionNode* node) Die* tmp1 = diceList[i]; int j =0; bool found = false; - //for(; ((j < diceList2.size())&&(!found)); ++j) int start = 0; int end = diceList2.size(); int distance = 0; @@ -92,3 +92,7 @@ void SortResultNode::setSortAscending(bool asc) { m_ascending = asc; } +QString SortResultNode::toString() const +{ + return "SortResultNode"; +} |