diff options
| author | prep <prep@lindenlab.com> | 2011-05-25 12:40:51 -0400 | 
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2011-05-25 12:40:51 -0400 | 
| commit | b76d15ed14abfe3b4c422ba9ff3d4151de8a31ea (patch) | |
| tree | 3c12439e798947e8bf8ff932d0d0f7578b59028a | |
| parent | cb797532c0bd7ca0ab4caf66c48aa55ec99160a0 (diff) | |
SH-1252 & SH-1253 accesor cleanup
| -rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llviewerobjectlist.h | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 007b3416f1..78b06b0764 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -1418,12 +1418,12 @@ void LLViewerObjectList::onObjectCostFetchFailure(const LLUUID& object_id)  	mPendingObjectCost.erase(object_id);  } -void LLViewerObjectList::updateQuotaCost( const LLUUID& objectId, const SelectionQuota& quota  ) +void LLViewerObjectList::updateQuota( const LLUUID& objectId, const SelectionQuota& quota  )  {  	LLViewerObject* pVO = findObject( objectId );  	if ( pVO )  	{ -		//pVO->updateQuota( quota ); +		pVO->updateQuota( quota );  	}  } diff --git a/indra/newview/llviewerobjectlist.h b/indra/newview/llviewerobjectlist.h index 8e211eaf73..6f0d285f5d 100644 --- a/indra/newview/llviewerobjectlist.h +++ b/indra/newview/llviewerobjectlist.h @@ -102,7 +102,7 @@ public:  									F32 restitution,  									F32 gravity_multiplier); -	void updateQuotaCost( const LLUUID& objectId, const SelectionQuota& costs ); +	void updateQuota( const LLUUID& objectId, const SelectionQuota& costs );  	void shiftObjects(const LLVector3 &offset); | 
