From 4fd55360e7025431e334e895324f3854914697ad Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Mon, 20 May 2013 21:00:54 -0400 Subject: [PATCH] Remove special casing of "Subject" in MatrixOutput::toString --- openbr/openbr_plugin.cpp | 5 ----- 1 file changed, 0 insertions(+), 5 deletions(-) diff --git a/openbr/openbr_plugin.cpp b/openbr/openbr_plugin.cpp index 70724c5..3f1acf8 100644 --- a/openbr/openbr_plugin.cpp +++ b/openbr/openbr_plugin.cpp @@ -1033,11 +1033,6 @@ MatrixOutput *MatrixOutput::make(const FileList &targetFiles, const FileList &qu /* MatrixOutput - protected methods */ QString MatrixOutput::toString(int row, int column) const { - if (targetFiles[column] == "Subject") { - const int label = data.at(row,column); - // problem -cao - return QString::number(label); - } return QString::number(data.at(row,column)); } -- libgit2 0.21.4