summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authordolphin <dolphin@lindenlab.com>2013-08-22 13:23:18 -0700
committerdolphin <dolphin@lindenlab.com>2013-08-22 13:23:18 -0700
commit33ddb103e25f1917c60695c6ced59807bf243ac5 (patch)
tree26571318f62fb945c7f414e57a41a72ed88c1eb1 /indra/newview
parent373d37cd7bd41daa85850280e985a43edcca0a47 (diff)
fixed constructor typo
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterexperienceprofile.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp
index e074f83baa..89481e719f 100644
--- a/indra/newview/llfloaterexperienceprofile.cpp
+++ b/indra/newview/llfloaterexperienceprofile.cpp
@@ -37,7 +37,6 @@
#include "llexpandabletextbox.h"
#include "lltexturectrl.h"
#include "lltrans.h"
-#include <sstream>
#define XML_PANEL_EXPERIENCE_PROFILE "floater_experienceprofile.xml"
#define TF_NAME "experience_title"
@@ -183,7 +182,7 @@ void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience )
LLSD data;
- std::istringstream is = std::istringstream(value);
+ std::istringstream is(value);
if(LLSDParser::PARSE_FAILURE != parser->parse(is, data, value.size()))
{
if(data.has(TF_MRKT))