diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-11 13:32:50 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-11 13:32:50 +0000 |
commit | c53e587170d5c6dfeb5fa418a8b4eda964ee8a91 (patch) | |
tree | 529ac56e5c63f23c68685d04e80130eaffb2a48e /indra/newview | |
parent | 69bed1f123f35b6124f4e3255df156b7fe82418b (diff) |
CID-115
Checker: MISSING_BREAK
Function: LLGroupMgrGroupData::sendRoleChanges()
File: /indra/newview/llgroupmgr.cpp
not a bug.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llgroupmgr.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp index 4c1019a882..c813c8b2f9 100644 --- a/indra/newview/llgroupmgr.cpp +++ b/indra/newview/llgroupmgr.cpp @@ -677,9 +677,12 @@ void LLGroupMgrGroupData::sendRoleChanges() break; } case RC_UPDATE_ALL: + // fall through case RC_UPDATE_POWERS: need_power_recalc = true; + // fall through case RC_UPDATE_DATA: + // fall through default: { LLGroupRoleData* group_role_data = (*role_it).second; |