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

Merge pull request #251 from dpogue/plresmgr-strings

Convert plRegistryNode stuff to plString.
This commit is contained in:
2013-01-07 21:59:09 -08:00
22 changed files with 116 additions and 125 deletions

View File

@ -66,6 +66,6 @@ void plNetClientGroups::ISetGroupDesc(plNetGroupId& grpId)
else
{
const plPageInfo* pageInfo=plKeyFinder::Instance().GetLocationInfo(grpId.Room());
grpId.SetDesc(pageInfo->GetPage());
grpId.SetDesc(pageInfo->GetPage().c_str());
}
}
}

View File

@ -1236,7 +1236,7 @@ bool plNetClientMgr::ObjectInLocalAge(const plSynchedObject* obj) const
{
plLocation loc = obj->GetKey()->GetUoid().GetLocation();
const plPageInfo* pageInfo = plKeyFinder::Instance().GetLocationInfo(loc);
bool ret= IsLocalAge(pageInfo->GetAge());
bool ret= IsLocalAge(pageInfo->GetAge().c_str());
return ret;
}