mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-29 08:43:29 -05:00
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:
parent
d7ad01b57a
commit
b68e660a1c
@ -136,12 +136,16 @@ int RsIntroServer::setupChatLobbies(std::string &genericLobbyName)
|
|||||||
germanLobbyName += " (DE) " + trimmedstr;
|
germanLobbyName += " (DE) " + trimmedstr;
|
||||||
frenchLobbyName += " (FR) " + 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;
|
std::list<std::string> emptyList;
|
||||||
uint32_t lobby_privacy_type = RS_CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC;
|
uint32_t lobby_privacy_type = RS_CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC;
|
||||||
|
|
||||||
mEnglishLobby = rsMsgs->createChatLobby(englishLobbyName, emptyList, lobby_privacy_type);
|
mEnglishLobby = rsMsgs->createChatLobby(englishLobbyName,englishTopic, emptyList, lobby_privacy_type);
|
||||||
mFrenchLobby = rsMsgs->createChatLobby(frenchLobbyName, emptyList, lobby_privacy_type);
|
mFrenchLobby = rsMsgs->createChatLobby(frenchLobbyName,frenchTopic, emptyList, lobby_privacy_type);
|
||||||
mGermanLobby = rsMsgs->createChatLobby(germanLobbyName, emptyList, lobby_privacy_type);
|
mGermanLobby = rsMsgs->createChatLobby(germanLobbyName,germanTopic, emptyList, lobby_privacy_type);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user