mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 03:22:34 -04: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
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 ;
|
std::string strlist ;
|
||||||
for (auto iter = terms.begin(); iter != terms.end(); ++iter )
|
for (auto iter = terms.begin(); iter != terms.end(); ++iter )
|
||||||
strlist += *iter + ",";
|
strlist += *iter + " ";
|
||||||
|
|
||||||
if(!strlist.empty())
|
if(!strlist.empty())
|
||||||
strlist.pop_back(); // pops the last ","
|
strlist.pop_back(); // pops the last ","
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue