diff options
author | Oz Linden <oz@lindenlab.com> | 2011-09-22 08:52:21 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-09-22 08:52:21 -0400 |
commit | 627bd3c5b998b6a743b7b412235bc5a287dadfc4 (patch) | |
tree | c5b14803f81a8fb068e2af72807d1cc8dbb0c02f /indra/llinventory | |
parent | 4c25b7398b1c1fcdd155f4021a6f63b1bff88cdb (diff) | |
parent | 2091ce3ae745b15c979e78f853eb0d1777efff18 (diff) |
merge changes for storm-1607
Diffstat (limited to 'indra/llinventory')
-rw-r--r-- | indra/llinventory/llparcel.cpp | 9 | ||||
-rw-r--r-- | indra/llinventory/llparcel.h | 5 |
2 files changed, 0 insertions, 14 deletions
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp index c95f922301..433076c7a9 100644 --- a/indra/llinventory/llparcel.cpp +++ b/indra/llinventory/llparcel.cpp @@ -1373,12 +1373,3 @@ LLParcel::ECategory category_ui_string_to_category(const std::string& s) // is a distinct option from "None" and "Other" return LLParcel::C_ANY; } - -void LLParcel::updateQuota( const LLUUID& objectId, const ParcelQuota& quota ) -{ - if ( mID == objectId ) - { - mQuota = quota; - } -} - diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h index ff35caab4c..e36d0b20d2 100644 --- a/indra/llinventory/llparcel.h +++ b/indra/llinventory/llparcel.h @@ -34,7 +34,6 @@ #include "llpermissions.h" #include "lltimer.h" #include "v3math.h" -#include "llaccountingquota.h" // Grid out of which parcels taken is stepped every 4 meters. const F32 PARCEL_GRID_STEP_METERS = 4.f; @@ -603,9 +602,6 @@ public: BOOL getSellWithObjects() const { return (mParcelFlags & PF_SELL_PARCEL_OBJECTS) ? TRUE : FALSE; } - void updateQuota( const LLUUID& objectId, const ParcelQuota& quota ); - const ParcelQuota& getQuota( void ) { return mQuota; } - protected: LLUUID mID; LLUUID mOwnerID; @@ -681,7 +677,6 @@ protected: BOOL mAllowGroupAVSounds; BOOL mAllowAnyAVSounds; - ParcelQuota mQuota; public: // HACK, make private |