From a64d8077d346eee962d00cca9e0f3eae076a6d58 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Sun, 6 Nov 2011 04:01:55 +0100 Subject: output intersection() instead of intersection_for() for evaluated nodes diff --git a/src/node.cc b/src/node.cc index 12a7ca4..a4d70be 100644 --- a/src/node.cc +++ b/src/node.cc @@ -78,7 +78,9 @@ std::string AbstractIntersectionNode::toString() const std::string AbstractIntersectionNode::name() const { - return "intersection_for"; + // We write intersection here since the module will have to be evaluated + // before we get here and it will not longer retain the intersection_for parameters + return "intersection"; } void AbstractNode::progress_prepare() -- cgit v0.10.1