aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llmessageconfig.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:58 -0500
committerJacek Antonelli2008-08-15 23:44:58 -0500
commit089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch)
tree0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/llmessage/llmessageconfig.cpp
parentSecond Life viewer sources 1.16.0.5 (diff)
downloadmeta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz
Second Life viewer sources 1.17.0.12
Diffstat (limited to 'linden/indra/llmessage/llmessageconfig.cpp')
-rw-r--r--linden/indra/llmessage/llmessageconfig.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/llmessage/llmessageconfig.cpp b/linden/indra/llmessage/llmessageconfig.cpp
index a0566ea..687896b 100644
--- a/linden/indra/llmessage/llmessageconfig.cpp
+++ b/linden/indra/llmessage/llmessageconfig.cpp
@@ -112,9 +112,10 @@ void LLMessageConfigFile::loadServerDefaults(const LLSD& data)
112 112
113void LLMessageConfigFile::loadMessages(const LLSD& data) 113void LLMessageConfigFile::loadMessages(const LLSD& data)
114{ 114{
115 mMessages = data["messages"]; 115 LLPointer<LLSDXMLFormatter> formatter = new LLSDXMLFormatter;
116 std::ostringstream out; 116 std::ostringstream out;
117 LLSDXMLFormatter *formatter = new LLSDXMLFormatter; 117
118 mMessages = data["messages"];
118 formatter->format(mMessages, out); 119 formatter->format(mMessages, out);
119 lldebugs << "loading ... " << out.str() 120 lldebugs << "loading ... " << out.str()
120 << " LLMessageConfigFile::loadMessages loaded " 121 << " LLMessageConfigFile::loadMessages loaded "