diff options
| author | Loren Shih <seraph@lindenlab.com> | 2010-04-06 17:30:23 -0400 |
|---|---|---|
| committer | Loren Shih <seraph@lindenlab.com> | 2010-04-06 17:30:23 -0400 |
| commit | c3d9316dff568d5265d856a708e3909deae09f18 (patch) | |
| tree | c05e3fb3229f15b71b83483a52f52f00156ecbd3 /indra/newview/llpaneloutfitedit.cpp | |
| parent | cdbdb1168694bcbfc58208f2941f513b556a0d6e (diff) | |
EXT-6727 : Allow LLInventoryObservers to target a single item (instead of a vector of items)
Added new constructors to LLInventoryFetch types to allow passing in a single item.
Diffstat (limited to 'indra/newview/llpaneloutfitedit.cpp')
| -rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index 5701fcb582..e93293a0f0 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -481,10 +481,8 @@ void LLPanelOutfitEdit::updateLookInfo() if (getVisible()) { mLookContents->clearRows(); - - uuid_vec_t folders; - folders.push_back(mLookID); - mFetchLook->setFolders(folders); + + mFetchLook->setFolders(mLookID); mFetchLook->startFetch(); if (mFetchLook->isEverythingComplete()) { |
