diff options
author | Jacek Antonelli | 2008-08-15 23:45:29 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:29 -0500 |
commit | 7bdb4845afdd157f95281293803567090e3f992a (patch) | |
tree | fbcada1c227d7407f9f37ccba360bfe6326d9c5e /linden/indra/newview/llpanelgroupinvite.cpp | |
parent | Second Life viewer sources 1.19.0.0 (diff) | |
download | meta-impy-7bdb4845afdd157f95281293803567090e3f992a.zip meta-impy-7bdb4845afdd157f95281293803567090e3f992a.tar.gz meta-impy-7bdb4845afdd157f95281293803567090e3f992a.tar.bz2 meta-impy-7bdb4845afdd157f95281293803567090e3f992a.tar.xz |
Second Life viewer sources 1.19.0.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpanelgroupinvite.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llpanelgroupinvite.cpp b/linden/indra/newview/llpanelgroupinvite.cpp index 0879ae5..73900f0 100644 --- a/linden/indra/newview/llpanelgroupinvite.cpp +++ b/linden/indra/newview/llpanelgroupinvite.cpp | |||
@@ -165,7 +165,7 @@ void LLPanelGroupInvite::impl::submitInvitations() | |||
165 | 165 | ||
166 | void LLPanelGroupInvite::impl::addRoleNames(LLGroupMgrGroupData* gdatap) | 166 | void LLPanelGroupInvite::impl::addRoleNames(LLGroupMgrGroupData* gdatap) |
167 | { | 167 | { |
168 | LLGroupMgrGroupData::member_iter agent_iter = | 168 | LLGroupMgrGroupData::member_list_t::iterator agent_iter = |
169 | gdatap->mMembers.find(gAgent.getID()); | 169 | gdatap->mMembers.find(gAgent.getID()); |
170 | 170 | ||
171 | //get the member data for the agent if it exists | 171 | //get the member data for the agent if it exists |
@@ -191,8 +191,8 @@ void LLPanelGroupInvite::impl::addRoleNames(LLGroupMgrGroupData* gdatap) | |||
191 | bool can_assign_limited = gAgent.hasPowerInGroup(mGroupID, | 191 | bool can_assign_limited = gAgent.hasPowerInGroup(mGroupID, |
192 | GP_ROLE_ASSIGN_MEMBER_LIMITED); | 192 | GP_ROLE_ASSIGN_MEMBER_LIMITED); |
193 | 193 | ||
194 | LLGroupMgrGroupData::role_iter rit = gdatap->mRoles.begin(); | 194 | LLGroupMgrGroupData::role_list_t::iterator rit = gdatap->mRoles.begin(); |
195 | LLGroupMgrGroupData::role_iter end = gdatap->mRoles.end(); | 195 | LLGroupMgrGroupData::role_list_t::iterator end = gdatap->mRoles.end(); |
196 | 196 | ||
197 | //populate the role list | 197 | //populate the role list |
198 | for ( ; rit != end; ++rit) | 198 | for ( ; rit != end; ++rit) |