diff options
author | Baker Linden <baker@lindenlab.com> | 2013-10-29 14:37:18 -0700 |
---|---|---|
committer | Baker Linden <baker@lindenlab.com> | 2013-10-29 14:37:18 -0700 |
commit | b935d5c62d60f42eac1a42575b2eeaf3ede664f6 (patch) | |
tree | 2199c2f27901d90cde7d5422a6915ff0cc19d8c7 /indra/newview/llpanelgrouproles.cpp | |
parent | 427a33d6108ada1c8ca2e046b87b5d035b0ac877 (diff) |
- Fixed the allowed_by_all to use all 64 bits
- Changed some text to be more clarifying and to remove temp strings.
Diffstat (limited to 'indra/newview/llpanelgrouproles.cpp')
-rwxr-xr-x | indra/newview/llpanelgrouproles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index 0be7ee7d05..347d2135b1 100755 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -872,7 +872,7 @@ void LLPanelGroupMembersSubTab::handleMemberSelect() // Build a vector of all selected members, and gather allowed actions. uuid_vec_t selected_members; - U64 allowed_by_all = 0xffffffffffffLL; + U64 allowed_by_all = 0xFFFFffffFFFFffffLL; U64 allowed_by_some = 0; std::vector<LLScrollListItem*>::iterator itor; |