#1052 Improved the result variable text a bit for Flow Diag Results

This commit is contained in:
Jacob Støren 2017-01-03 14:59:48 +01:00
parent 5aed8ea939
commit 6d498cce98

View File

@ -35,12 +35,12 @@ std::string RigFlowDiagResultAddress::uiText()
std::string uiVarname = variableName; std::string uiVarname = variableName;
std::string uitext = uiVarname; std::string uitext = uiVarname;
uitext += "("; uitext += " (";
for (const std::string& tracerName : selectedTracerNames) for (const std::string& tracerName : selectedTracerNames)
{ {
uitext += " " + tracerName; uitext += " " + tracerName;
} }
uitext += ")"; uitext += " )";
return uitext; return uitext;
} }