mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
in search strings change comma to space for better look
This commit is contained in:
parent
8368a764fc
commit
919d6503d7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue