summaryrefslogtreecommitdiff
path: root/indra/newview/llinventoryitemslist.cpp
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-10-14 22:15:43 -0700
committerAndrey Lihatskiy <alihatskiy@productengine.com>2025-03-12 18:37:27 +0200
commitd915cf17dfb4ddd79830f3ff9fea004ba9d2b61c (patch)
tree1c1814e0e3d3dbaa1dc9a8b4c6ed4533118704c8 /indra/newview/llinventoryitemslist.cpp
parent5aedf53f0180e268d7c47d767e79c2ac4beb4798 (diff)
Try to parallelize xcode builds further and add more headers to PCH to reduce build time
Diffstat (limited to 'indra/newview/llinventoryitemslist.cpp')
-rw-r--r--indra/newview/llinventoryitemslist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventoryitemslist.cpp b/indra/newview/llinventoryitemslist.cpp
index 9e936eee5b..2e0669fc38 100644
--- a/indra/newview/llinventoryitemslist.cpp
+++ b/indra/newview/llinventoryitemslist.cpp
@@ -99,7 +99,7 @@ void LLInventoryItemsList::updateSelection()
for(std::vector<LLSD>::const_iterator cur_id_it = cur.begin(); cur_id_it != cur.end() && !mSelectTheseIDs.empty(); ++cur_id_it)
{
- uuid_vec_t::iterator select_ids_it = std::find(mSelectTheseIDs.begin(), mSelectTheseIDs.end(), *cur_id_it);
+ uuid_vec_t::iterator select_ids_it = std::find(mSelectTheseIDs.begin(), mSelectTheseIDs.end(), cur_id_it->asUUID());
if(select_ids_it != mSelectTheseIDs.end())
{
selectItemByUUID(*select_ids_it);