diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-10-24 12:21:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 12:21:13 -0400 |
commit | b611324db58def7d65f4bfc721e7dc1c378b7fa3 (patch) | |
tree | 22074ffb1c262b9ffbb458a2836405e5c086ce7d /indra/newview/llpaneloutfitedit.cpp | |
parent | 299c37adaec5cf33981cbbaa3c25c68152b14725 (diff) | |
parent | 168a5f36b92f5cbc3d83248fb5ffbb47a3b7e223 (diff) |
Merge pull request #2585 from secondlife/marchcat/xcode-16
Xcode16 build fix
Diffstat (limited to 'indra/newview/llpaneloutfitedit.cpp')
-rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index 60017db51d..1c2dac6d6e 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -1307,7 +1307,7 @@ void LLPanelOutfitEdit::showFilteredWearablesListView(LLWearableType::EType type showWearablesListView(); //e_list_view_item_type implicitly contains LLWearableType::EType starting from LVIT_SHAPE - applyListViewFilter(static_cast<EListViewItemType>(LVIT_SHAPE + type)); + applyListViewFilter(EListViewItemType(LVIT_SHAPE + EListViewItemType(type))); mWearableItemsList->setMenuWearableType(type); } |