fixed to use ", " instead ";" to for distance to next peer name

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2977 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-05-23 18:31:40 +00:00
parent 718ed562ca
commit 75349f4fe8

View File

@ -990,7 +990,7 @@ void MessagesDialog::insertMessages()
for (pit = msgInfo.msgto.begin(); pit != msgInfo.msgto.end(); pit++) for (pit = msgInfo.msgto.begin(); pit != msgInfo.msgto.end(); pit++)
{ {
if (text.isEmpty() == false) { if (text.isEmpty() == false) {
text += ";"; text += ", ";
} }
QString sPeer = QString::fromStdString(rsPeers->getPeerName(*pit)); QString sPeer = QString::fromStdString(rsPeers->getPeerName(*pit));