1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 18:59:09 +00:00

Fix a typo from way back when

This commit is contained in:
2012-05-21 19:04:44 -07:00
parent 92b1ec4473
commit d382da0fe7

View File

@ -100,7 +100,7 @@ public:
std::set<OwnedGroup>::iterator it=IFind(grpId); std::set<OwnedGroup>::iterator it=IFind(grpId);
if (it != fGroups.end()) if (it != fGroups.end())
{ {
OwnedGroup grp(it->fGroup, it->fOwnIt); OwnedGroup grp(grpId, ownIt);
fGroups.erase(it); fGroups.erase(it);
fGroups.insert(grp); fGroups.insert(grp);
} }