fixed compilation of introserver

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5028 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2012-03-17 13:18:29 +00:00
parent d7ad01b57a
commit b68e660a1c

View File

@ -136,12 +136,16 @@ int RsIntroServer::setupChatLobbies(std::string &genericLobbyName)
germanLobbyName += " (DE) " + trimmedstr;
frenchLobbyName += " (FR) " + trimmedstr;
std::string englishTopic = "Connect to this lobby to meet new friends" ;
std::string frenchTopic = "Connectez vous a ce lobby pour rencontrer de nouveaux amis" ;
std::string germanTopic = englishTopic ;
std::list<std::string> emptyList;
uint32_t lobby_privacy_type = RS_CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC;
mEnglishLobby = rsMsgs->createChatLobby(englishLobbyName, emptyList, lobby_privacy_type);
mFrenchLobby = rsMsgs->createChatLobby(frenchLobbyName, emptyList, lobby_privacy_type);
mGermanLobby = rsMsgs->createChatLobby(germanLobbyName, emptyList, lobby_privacy_type);
mEnglishLobby = rsMsgs->createChatLobby(englishLobbyName,englishTopic, emptyList, lobby_privacy_type);
mFrenchLobby = rsMsgs->createChatLobby(frenchLobbyName,frenchTopic, emptyList, lobby_privacy_type);
mGermanLobby = rsMsgs->createChatLobby(germanLobbyName,germanTopic, emptyList, lobby_privacy_type);
return 1;
}