From dcb9e955e33e0397493cf99e31ad2a11c66b7e96 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Wed, 9 Jul 2014 10:33:21 -0400 Subject: [PATCH] In LoadStore, save the results of description() rather than a static transform string --- openbr/plugins/meta.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/plugins/meta.cpp b/openbr/plugins/meta.cpp index 79a3e11..c0b3bd3 100644 --- a/openbr/plugins/meta.cpp +++ b/openbr/plugins/meta.cpp @@ -541,7 +541,7 @@ private: qDebug("Storing %s", qPrintable(baseName)); QByteArray byteArray; QDataStream stream(&byteArray, QFile::WriteOnly); - stream << description2; + stream << transform->description(); transform->store(stream); QtUtils::writeFile(baseName, byteArray, -1); } -- libgit2 0.21.4