diff options
author | dolphin <dolphin@lindenlab.com> | 2013-10-17 14:36:54 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-10-17 14:36:54 -0700 |
commit | 035eafb0c69c434c709862c816663f2b4ca2ab2b (patch) | |
tree | 42539ab86a29d35aba9e413da1795873eb6a622e /indra | |
parent | fa344fdcd987ec66fa08f6286b504cb126c9a45c (diff) |
Fixed slurl saving for the experience profile floater
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterexperienceprofile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp index 740e800a07..0e868e199d 100644 --- a/indra/newview/llfloaterexperienceprofile.cpp +++ b/indra/newview/llfloaterexperienceprofile.cpp @@ -620,7 +620,7 @@ void LLFloaterExperienceProfile::doSave( int success_action ) package[LLExperienceCache::NAME] = getChild<LLLineEditor>(EDIT TF_NAME)->getText(); package[LLExperienceCache::DESCRIPTION] = getChild<LLTextEditor>(EDIT TF_DESC)->getText(); - package[LLExperienceCache::SLURL] = getChild<LLLineEditor>(EDIT TF_SLURL)->getText(); + package[LLExperienceCache::SLURL] = getChild<LLTextBox>(EDIT TF_SLURL)->getText(); package[LLExperienceCache::MATURITY] = getChild<LLComboBox>(EDIT TF_MATURITY)->getSelectedValue().asInteger(); |