diff options
| author | Baker Linden <baker@lindenlab.com> | 2014-04-29 11:25:46 -0700 | 
|---|---|---|
| committer | Baker Linden <baker@lindenlab.com> | 2014-04-29 11:25:46 -0700 | 
| commit | 810a8a07201018a5be9a4d285dd9235c94ad4778 (patch) | |
| tree | 64d099567945328d166f249fe92b60af27fee04e | |
| parent | 5bd41620d986e073e49255d9075093541e2a9ffe (diff) | |
Refactoring some variables to use a constant rather than F's because that's the nice thing to do.
Reviewer: Cho
| -rwxr-xr-x | indra/newview/llpanelgrouproles.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index 881779ca67..4132d5dfe6 100755 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -908,7 +908,7 @@ void LLPanelGroupMembersSubTab::handleMemberSelect()  	// Build a vector of all selected members, and gather allowed actions.  	uuid_vec_t selected_members; -	U64 allowed_by_all = 0xFFFFffffFFFFffffLL; +	U64 allowed_by_all = GP_ALL_POWERS; //0xFFFFffffFFFFffffLL;  	U64 allowed_by_some = 0;  	std::vector<LLScrollListItem*>::iterator itor; @@ -1211,7 +1211,7 @@ void LLPanelGroupMembersSubTab::handleRoleCheck(const LLUUID& role_id,  	//add that the user is requesting to change the roles for selected  	//members -	U64 powers_all_have  = 0xffffffffffffLL; +	U64 powers_all_have  = GP_ALL_POWERS;  	U64 powers_some_have = 0;  	BOOL   is_owner_role = ( gdatap->mOwnerRole == role_id ); | 
