From c4ff790d5bd501b27798071fbc2075fd91cd994b Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Fri, 13 Feb 2015 15:09:44 -0800 Subject: [PATCH] Default Transform::fromAlgorithm preprocess to false, following changes to stream, this is now a bad default --- openbr/openbr_plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/openbr_plugin.h b/openbr/openbr_plugin.h index 2d2d53e..ac99081 100644 --- a/openbr/openbr_plugin.h +++ b/openbr/openbr_plugin.h @@ -1178,7 +1178,7 @@ public: virtual ~Transform() {} static Transform *make(QString str, QObject *parent); /*!< \brief Make a transform from a string. */ - static QSharedPointer fromAlgorithm(const QString &algorithm, bool preprocess=true); /*!< \brief Retrieve an algorithm's transform. If preprocess is true, attaches a stream transform as the root of the algorithm*/ + static QSharedPointer fromAlgorithm(const QString &algorithm, bool preprocess=false); /*!< \brief Retrieve an algorithm's transform. If preprocess is true, attaches a stream transform as the root of the algorithm*/ static QSharedPointer fromComparison(const QString &algorithm); virtual Transform *clone() const; /*!< \brief Copy the transform. */ -- libgit2 0.21.4