Fixed lobby names with utf8 characters.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4748 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-01-02 00:25:43 +00:00
parent da69e1f1ad
commit 3ac5ead40e
3 changed files with 3 additions and 3 deletions
retroshare-gui/src/gui/chat

View file

@ -98,7 +98,7 @@ void CreateLobbyDialog::createLobby()
}
// create chat lobby !!
std::string lobby_name = ui->lobbyName_LE->text().toStdString() ;
std::string lobby_name = ui->lobbyName_LE->text().toUtf8().constData() ;
// add to group
ChatLobbyId id = rsMsgs->createChatLobby(lobby_name, mShareList);