summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorMonroe Linden <monroe@lindenlab.com>2010-08-26 11:23:46 -0700
committerMonroe Linden <monroe@lindenlab.com>2010-08-26 11:23:46 -0700
commit904e43e664583b6e567a32becf182957b2006dff (patch)
tree48e0d017bf30ebfe73180e9c3cad757584fd6800 /indra/llui
parent2f0d1f98834a37063c1ebde2c518bf20854381e2 (diff)
Fix another mac build error.
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llsdparam.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llsdparam.h b/indra/llui/llsdparam.h
index 83c958d67d..c42358178a 100644
--- a/indra/llui/llsdparam.h
+++ b/indra/llui/llsdparam.h
@@ -93,7 +93,8 @@ class LLSDParamAdapter : public T
LLSDParamAdapter() {}
LLSDParamAdapter(const LLSD& sd)
{
- LLParamSDParser::instance().readSD(sd, *this);
+ LLParamSDParser parser;
+ parser.readSD(sd, *this);
}
LLSDParamAdapter(const T& val)