Skip to content
Snippets Groups Projects
Commit 10776d27 authored by Oz Linden's avatar Oz Linden
Browse files

merge changes for storm-1111

parents c0fc4d81 40077972
No related branches found
No related tags found
No related merge requests found
...@@ -250,9 +250,13 @@ void LLNearbyChat::getAllowedRect(LLRect& rect) ...@@ -250,9 +250,13 @@ void LLNearbyChat::getAllowedRect(LLRect& rect)
void LLNearbyChat::updateChatHistoryStyle() void LLNearbyChat::updateChatHistoryStyle()
{ {
mChatHistory->clear(); mChatHistory->clear();
LLSD do_not_log;
do_not_log["do_not_log"] = true;
for(std::vector<LLChat>::iterator it = mMessageArchive.begin();it!=mMessageArchive.end();++it) for(std::vector<LLChat>::iterator it = mMessageArchive.begin();it!=mMessageArchive.end();++it)
{ {
addMessage(*it,false); // Update the messages without re-writing them to a log file.
addMessage(*it,false, do_not_log);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment