Skip to content

Commit

Permalink
Datafilter - Add Compound case to Leaf::toString
Browse files Browse the repository at this point in the history
For debugging and completenes
  • Loading branch information
amtriathlon committed Oct 26, 2022
1 parent 6f4da99 commit a99cc33
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Core/DataFilter.cpp
Expand Up @@ -1415,6 +1415,14 @@ Leaf::toString()
}
break;

case Leaf::Compound : //qDebug()<<"comp:"<<op;
{
QString returning("{");
foreach (Leaf* l, *(lvalue.b)) returning.append(l->toString()).append(";");
return returning.append("}");
}
break;

default:
break;

Expand Down

0 comments on commit a99cc33

Please sign in to comment.