summaryrefslogtreecommitdiff
path: root/indra/newview/llappearancemgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rwxr-xr-xindra/newview/llappearancemgr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index 11bb81d8ff..61b8071cf9 100755
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -1481,15 +1481,15 @@ void LLAppearanceMgr::takeOffOutfit(const LLUUID& cat_id)
}
removeItemsFromAvatar(uuids_to_remove);
- // now deactivating all gestures in that folder
+ // deactivate all gestures in the outfit folder
LLInventoryModel::item_array_t gest_items;
getDescendentsOfAssetType(cat_id, gest_items, LLAssetType::AT_GESTURE);
- for (S32 i = 0; i < gest_items.size(); ++i)
+ for(S32 i = 0; i < gest_items.size(); ++i)
{
LLViewerInventoryItem *gest_item = gest_items[i];
- if (LLGestureMgr::instance().isGestureActive(gest_item->getLinkedUUID()))
+ if ( LLGestureMgr::instance().isGestureActive( gest_item->getLinkedUUID()) )
{
- LLGestureMgr::instance().deactivateGesture(gest_item->getLinkedUUID());
+ LLGestureMgr::instance().deactivateGesture( gest_item->getLinkedUUID() );
}
}
}