summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorIgor Borovkov <iborovkov@productengine.com>2010-04-23 15:58:28 +0300
committerIgor Borovkov <iborovkov@productengine.com>2010-04-23 15:58:28 +0300
commit72c7323df7fe89be366532705532a1c5bb2d97fe (patch)
tree31029d66c8e3a08b59fff4ed6446df4b23dfef93 /indra
parentefd7b2502df521e945274db74f88297a358e5144 (diff)
parentf0f9ab5aa6f74e3bc53ae0aec86aad6d059fc2b3 (diff)
merge
--HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llappearancemgr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index a6a3aa28d6..6aefecc787 100644
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -1846,7 +1846,8 @@ bool LLAppearanceMgr::moveWearable(LLViewerInventoryItem* item, bool closer_to_b
LLInventoryModel::cat_array_t cats;
LLInventoryModel::item_array_t items;
- gInventory.collectDescendentsIf(getCOF(), cats, items, true, LLFindClothesOfType(item->getWearableType()));
+ LLFindClothesOfType filter_wearables_of_type(item->getWearableType());
+ gInventory.collectDescendentsIf(getCOF(), cats, items, true, filter_wearables_of_type);
if (items.empty()) return false;
//*TODO all items are not guarantied to have valid descriptions (check?)