Merge pull request #1111 from RetroPooh/searstr

in search strings change comma to space for better look
This commit is contained in:
csoler 2017-11-14 20:41:48 +01:00 committed by GitHub
commit fdced92356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,7 +132,7 @@ std::string StringExpression::toStdString(const std::string& varstr) const
{
std::string strlist ;
for (auto iter = terms.begin(); iter != terms.end(); ++iter )
strlist += *iter + ",";
strlist += *iter + " ";
if(!strlist.empty())
strlist.pop_back(); // pops the last ","