summaryrefslogtreecommitdiff
path: root/indra/newview/lloutfitslist.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-11 19:10:46 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-11 19:16:11 +0300
commita0f282643f26789ef7e1b624398581cceafc257c (patch)
tree6c899c380cbd6b7ea45321f6836c54537affe9a7 /indra/newview/lloutfitslist.cpp
parentc86347eda085aa081dbff1ef12dc8a1c89314c21 (diff)
Restore the fix for #945 (lost during merge #1178)
Diffstat (limited to 'indra/newview/lloutfitslist.cpp')
-rw-r--r--indra/newview/lloutfitslist.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp
index 20ef1588ae..7bb9fa2eed 100644
--- a/indra/newview/lloutfitslist.cpp
+++ b/indra/newview/lloutfitslist.cpp
@@ -913,16 +913,8 @@ void LLOutfitListBase::onIdleRefreshList()
LLViewerInventoryCategory *cat = gInventory.getCategory(*items_iter);
if (cat)
{
- LLInventoryObject* obj = gInventory.getObject(*items_iter);
- if (!obj || (obj->getType() != LLAssetType::AT_CATEGORY))
- {
- break;
- }
- cat = (LLViewerInventoryCategory*)obj;
+ updateChangedCategoryName(cat, cat->getName());
}
- std::string name = cat->getName();
-
- updateChangedCategoryName(cat, name);
}
sortOutfits();