mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-13 00:19:30 -05:00
Added missing restore of ostream format (std::dec) in rschatitems.cc.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8607 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9279cc17b1
commit
37f68bc3b6
@ -86,10 +86,10 @@ std::ostream& RsChatLobbyListRequestItem::print(std::ostream &out, uint16_t inde
|
||||
}
|
||||
std::ostream& RsChatLobbyBouncingObject::print(std::ostream &out, uint16_t indent)
|
||||
{
|
||||
printIndent(out, indent); out << "Lobby ID: " << std::hex << lobby_id << std::endl;
|
||||
printIndent(out, indent); out << "Lobby ID: " << std::hex << lobby_id << std::dec << std::endl;
|
||||
printIndent(out, indent); out << "Msg ID: " << std::hex << msg_id << std::dec << std::endl;
|
||||
printIndent(out, indent); out << "Nick: " << nick << std::dec << std::endl;
|
||||
printIndent(out, indent); out << "Sign: " << signature.keyId << std::dec << std::endl;
|
||||
printIndent(out, indent); out << "Nick: " << nick << std::endl;
|
||||
printIndent(out, indent); out << "Sign: " << signature.keyId << std::endl;
|
||||
|
||||
return out;
|
||||
}
|
||||
@ -97,7 +97,7 @@ std::ostream& RsChatLobbyUnsubscribeItem::print(std::ostream &out, uint16_t inde
|
||||
{
|
||||
printRsItemBase(out, "RsChatLobbyUnsubscribeItem", indent);
|
||||
printIndent(out, indent);
|
||||
out << "Lobby id: " << std::hex << lobby_id << std::endl;
|
||||
out << "Lobby id: " << std::hex << lobby_id << std::dec << std::endl;
|
||||
printRsItemEnd(out, "RsChatLobbyUnsubscribeItem", indent);
|
||||
return out;
|
||||
}
|
||||
@ -115,7 +115,7 @@ std::ostream& RsChatLobbyConnectChallengeItem::print(std::ostream &out, uint16_t
|
||||
{
|
||||
printRsItemBase(out, "RsChatLobbyConnectChallengeItem", indent);
|
||||
printIndent(out, indent);
|
||||
out << "Challenge Code: " << std::hex << challenge_code << std::endl;
|
||||
out << "Challenge Code: " << std::hex << challenge_code << std::dec << std::endl;
|
||||
printRsItemEnd(out, "RsChatLobbyConnectChallengeItem", indent);
|
||||
return out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user