From 128f3dd454a876875125d54a85b24f3b5ce87b2e Mon Sep 17 00:00:00 2001 From: defnax Date: Mon, 29 Mar 2010 13:39:23 +0000 Subject: [PATCH] removed comma display on To Label, wont work properly git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2662 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/MessagesDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) + "" + " "; } {