mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 07:59:35 -05:00
Merge pull request #1111 from RetroPooh/searstr
in search strings change comma to space for better look
This commit is contained in:
commit
fdced92356
@ -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 ","
|
||||
|
Loading…
Reference in New Issue
Block a user