summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llsyntaxid.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llsyntaxid.cpp b/indra/newview/llsyntaxid.cpp
index 442793bff1..4b7a420384 100644
--- a/indra/newview/llsyntaxid.cpp
+++ b/indra/newview/llsyntaxid.cpp
@@ -64,9 +64,12 @@ public:
void result(const LLSD& content_ref)
{
//LLSyntaxIdLSL::setKeywordsXml(content_ref);
-
std::stringstream str;
LLSDSerialize::toPrettyXML(content_ref, str);
+
+ LLSD& xml = LLSD::emptyMap();
+ LLSDSerialize::deserialize(xml, str, 10485760);
+ //LLSyntaxIdLSL::setKeywordsXml(xml);
LL_WARNS("")
<< "fetchKeywordsFileResponder result:" << str.str()
<< "filename: '" << mFileSpec << "'"