From ac280fc3ceeaf4d0bea7f27f9e4924f9961061c9 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Wed, 1 Oct 2014 14:53:31 -0400 Subject: [PATCH] Add a correct simplify method for StreamTransform --- openbr/plugins/stream.cpp | 5 +++++ 1 file changed, 5 insertions(+), 0 deletions(-) diff --git a/openbr/plugins/stream.cpp b/openbr/plugins/stream.cpp index 6c92227..9f494b4 100644 --- a/openbr/plugins/stream.cpp +++ b/openbr/plugins/stream.cpp @@ -1722,6 +1722,11 @@ public: return false; } + // Stream acts as a shallow interface to DirectStream, so it's fine to remove ourselves here + Transform *simplify(bool &newTransform) + { + return basis->simplify(newTransform); + } private: QSharedPointer basis; -- libgit2 0.21.4