diff --git a/retroshare-gui/src/gui/MessagesDialog.cpp b/retroshare-gui/src/gui/MessagesDialog.cpp index a1246c125..5a462769f 100644 --- a/retroshare-gui/src/gui/MessagesDialog.cpp +++ b/retroshare-gui/src/gui/MessagesDialog.cpp @@ -887,21 +887,21 @@ void MessagesDialog::insertMsgTxtAndFiles(QModelIndex Index) QString msgTxt; for(pit = msgInfo.msgto.begin(); pit != msgInfo.msgto.end(); pit++) { - msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " , "; + msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " "; } if (msgInfo.msgcc.size() > 0) msgTxt += "\nCc: "; for(pit = msgInfo.msgcc.begin(); pit != msgInfo.msgcc.end(); pit++) { - msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " , "; + msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " "; } if (msgInfo.msgbcc.size() > 0) msgTxt += "\nBcc: "; for(pit = msgInfo.msgbcc.begin(); pit != msgInfo.msgbcc.end(); pit++) { - msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " , "; + msgTxt += " " + QString::fromStdString(rsPeers->getPeerName(*pit)) + "" + " "; } {