From b76d15ed14abfe3b4c422ba9ff3d4151de8a31ea Mon Sep 17 00:00:00 2001
From: prep <prep@lindenlab.com>
Date: Wed, 25 May 2011 12:40:51 -0400
Subject: [PATCH] SH-1252 & SH-1253 accesor cleanup

---
 indra/newview/llviewerobjectlist.cpp | 4 ++--
 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 007b3416f17..78b06b07645 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 8e211eaf738..6f0d285f5de 100644
--- a/indra/newview/llviewerobjectlist.h
+++ b/indra/newview/llviewerobjectlist.h
@@ -102,7 +102,7 @@ class LLViewerObjectList
 									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);
 
-- 
GitLab