aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llinventory/llparcel.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llinventory/llparcel.h')
-rw-r--r--linden/indra/llinventory/llparcel.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/linden/indra/llinventory/llparcel.h b/linden/indra/llinventory/llparcel.h
index 54936e2..29e393a 100644
--- a/linden/indra/llinventory/llparcel.h
+++ b/linden/indra/llinventory/llparcel.h
@@ -3,6 +3,7 @@
3 * 3 *
4 * Copyright (c) 2002-2007, Linden Research, Inc. 4 * Copyright (c) 2002-2007, Linden Research, Inc.
5 * 5 *
6 * Second Life Viewer Source Code
6 * The source code in this file ("Source Code") is provided by Linden Lab 7 * The source code in this file ("Source Code") is provided by Linden Lab
7 * to you under the terms of the GNU General Public License, version 2.0 8 * to you under the terms of the GNU General Public License, version 2.0
8 * ("GPL"), unless you have obtained a separate licensing agreement 9 * ("GPL"), unless you have obtained a separate licensing agreement
@@ -209,7 +210,6 @@ public:
209 void setLandingType(const ELandingType type) { mLandingType = type; } 210 void setLandingType(const ELandingType type) { mLandingType = type; }
210 211
211 void setAuctionID(U32 auction_id) { mAuctionID = auction_id;} 212 void setAuctionID(U32 auction_id) { mAuctionID = auction_id;}
212 void setReservedForNewbie(BOOL reserve) { mIsReservedForNewbie = reserve; }
213 213
214 void setAllParcelFlags(U32 flags) { mParcelFlags = flags; } 214 void setAllParcelFlags(U32 flags) { mParcelFlags = flags; }
215 void setParcelFlag(U32 flag, BOOL b); 215 void setParcelFlag(U32 flag, BOOL b);
@@ -290,7 +290,6 @@ public:
290 BOOL getIsGroupOwned() const { return mGroupOwned; } 290 BOOL getIsGroupOwned() const { return mGroupOwned; }
291 291
292 U32 getAuctionID() { return mAuctionID; } 292 U32 getAuctionID() { return mAuctionID; }
293 BOOL getReservedForNewbie() { return mIsReservedForNewbie; }
294 bool isInEscrow() const { return mInEscrow; } 293 bool isInEscrow() const { return mInEscrow; }
295 294
296 BOOL isPublic() const; 295 BOOL isPublic() const;
@@ -537,9 +536,6 @@ protected:
537 // the parcel. 536 // the parcel.
538 U32 mAuctionID; 537 U32 mAuctionID;
539 538
540 // This value is TRUE if the land is reserved for a newbie.
541 BOOL mIsReservedForNewbie;
542
543 // value used to temporarily lock attempts to purchase the parcel. 539 // value used to temporarily lock attempts to purchase the parcel.
544 bool mInEscrow; 540 bool mInEscrow;
545 541