forked from teamnwah/openmw-tes3coop
[Client] Change pointer type to reference
This commit is contained in:
parent
7499777b3a
commit
aa1f5c3cd3
2 changed files with 3 additions and 3 deletions
|
@ -541,9 +541,9 @@ namespace MWWorld
|
||||||
|
|
||||||
Make it possible to get the mMergedRefs in the CellStore from elsewhere in the code
|
Make it possible to get the mMergedRefs in the CellStore from elsewhere in the code
|
||||||
*/
|
*/
|
||||||
std::vector<LiveCellRefBase*> *CellStore::getMergedRefs()
|
std::vector<LiveCellRefBase*> &CellStore::getMergedRefs()
|
||||||
{
|
{
|
||||||
return &mMergedRefs;
|
return mMergedRefs;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
End of tes3mp addition
|
End of tes3mp addition
|
||||||
|
|
|
@ -245,7 +245,7 @@ namespace MWWorld
|
||||||
|
|
||||||
Make it possible to get the mMergedRefs in the CellStore from elsewhere in the code
|
Make it possible to get the mMergedRefs in the CellStore from elsewhere in the code
|
||||||
*/
|
*/
|
||||||
std::vector<LiveCellRefBase*> *getMergedRefs();
|
std::vector<LiveCellRefBase*> &getMergedRefs();
|
||||||
/*
|
/*
|
||||||
End of tes3mp addition
|
End of tes3mp addition
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue