summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2013-10-25 16:30:33 +0100
committerIma Mechanique <ima.mechanique@secondlife.com>2013-10-25 16:30:33 +0100
commit87978dc481b54b0b5528949e291c5fe06e5e10eb (patch)
tree8a6a95cafbee8198708f96143d638c6fcd48e6fa
parentbad5179f276f6913bfb9a313d25d02d0e883d678 (diff)
storm-1831 fixes for setKeywordsXml
-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 << "'"