diff options
author | Jacek Antonelli | 2008-08-15 23:45:16 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:16 -0500 |
commit | 3f27ba891ac4d032753b219b4b96d1ffbc9fb488 (patch) | |
tree | 504932ee91a0356fba7ea48798887c96867e492f /linden/indra/llinventory | |
parent | Second Life viewer sources 1.18.4.3 (diff) | |
download | meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.zip meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.gz meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.bz2 meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.xz |
Second Life viewer sources 1.18.5.0-RC
Diffstat (limited to 'linden/indra/llinventory')
-rw-r--r-- | linden/indra/llinventory/llparcel.cpp | 6 | ||||
-rw-r--r-- | linden/indra/llinventory/llparcel.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/linden/indra/llinventory/llparcel.cpp b/linden/indra/llinventory/llparcel.cpp index 3a67385..7cc3e57 100644 --- a/linden/indra/llinventory/llparcel.cpp +++ b/linden/indra/llinventory/llparcel.cpp | |||
@@ -38,6 +38,8 @@ | |||
38 | #include "llstreamtools.h" | 38 | #include "llstreamtools.h" |
39 | 39 | ||
40 | #include "llmath.h" | 40 | #include "llmath.h" |
41 | #include "llsd.h" | ||
42 | #include "llsdutil.h" | ||
41 | #include "lltransactiontypes.h" | 43 | #include "lltransactiontypes.h" |
42 | #include "lltransactionflags.h" | 44 | #include "lltransactionflags.h" |
43 | #include "message.h" | 45 | #include "message.h" |
@@ -1614,7 +1616,7 @@ void LLParcel::startSale(const LLUUID& buyer_id, BOOL is_buyer_group) | |||
1614 | mSaleTimerExpires.setTimerExpirySec(DEFAULT_USEC_SALE_TIMEOUT / SEC_TO_MICROSEC); | 1616 | mSaleTimerExpires.setTimerExpirySec(DEFAULT_USEC_SALE_TIMEOUT / SEC_TO_MICROSEC); |
1615 | mStatus = OS_LEASE_PENDING; | 1617 | mStatus = OS_LEASE_PENDING; |
1616 | mClaimDate = time(NULL); | 1618 | mClaimDate = time(NULL); |
1617 | mAuctionID = 0; | 1619 | setAuctionID(0); |
1618 | // clear the autoreturn whenever land changes hands | 1620 | // clear the autoreturn whenever land changes hands |
1619 | setCleanOtherTime(0); | 1621 | setCleanOtherTime(0); |
1620 | } | 1622 | } |
@@ -1649,6 +1651,7 @@ void LLParcel::completeSale(U32& type, U8& flags, | |||
1649 | // Purchased parcels are assumed to no longer be for sale. | 1651 | // Purchased parcels are assumed to no longer be for sale. |
1650 | // Otherwise someone can snipe the sale. | 1652 | // Otherwise someone can snipe the sale. |
1651 | setForSale(FALSE); | 1653 | setForSale(FALSE); |
1654 | setAuctionID(0); | ||
1652 | 1655 | ||
1653 | // Turn off show directory, since it's a recurring fee that | 1656 | // Turn off show directory, since it's a recurring fee that |
1654 | // the buyer may not want. | 1657 | // the buyer may not want. |
@@ -1674,6 +1677,7 @@ void LLParcel::clearSale() | |||
1674 | } | 1677 | } |
1675 | mAuthBuyerID.setNull(); | 1678 | mAuthBuyerID.setNull(); |
1676 | setForSale(FALSE); | 1679 | setForSale(FALSE); |
1680 | setAuctionID(0); | ||
1677 | setPreviousOwnerID(LLUUID::null); | 1681 | setPreviousOwnerID(LLUUID::null); |
1678 | setPreviouslyGroupOwned(FALSE); | 1682 | setPreviouslyGroupOwned(FALSE); |
1679 | setSellWithObjects(FALSE); | 1683 | setSellWithObjects(FALSE); |
diff --git a/linden/indra/llinventory/llparcel.h b/linden/indra/llinventory/llparcel.h index 9c63008..3af1824 100644 --- a/linden/indra/llinventory/llparcel.h +++ b/linden/indra/llinventory/llparcel.h | |||
@@ -31,6 +31,9 @@ | |||
31 | #ifndef LL_LLPARCEL_H | 31 | #ifndef LL_LLPARCEL_H |
32 | #define LL_LLPARCEL_H | 32 | #define LL_LLPARCEL_H |
33 | 33 | ||
34 | #include <time.h> | ||
35 | #include <iostream> | ||
36 | |||
34 | #include "lluuid.h" | 37 | #include "lluuid.h" |
35 | #include "llparcelflags.h" | 38 | #include "llparcelflags.h" |
36 | #include "llpermissions.h" | 39 | #include "llpermissions.h" |
@@ -100,6 +103,7 @@ const U32 RT_LIST = 0x1 << 4; | |||
100 | const U32 RT_SELL = 0x1 << 5; | 103 | const U32 RT_SELL = 0x1 << 5; |
101 | 104 | ||
102 | class LLMessageSystem; | 105 | class LLMessageSystem; |
106 | class LLSD; | ||
103 | 107 | ||
104 | class LLAccessEntry | 108 | class LLAccessEntry |
105 | { | 109 | { |
@@ -603,8 +607,6 @@ public: | |||
603 | std::map<LLUUID,LLAccessEntry> mBanList; | 607 | std::map<LLUUID,LLAccessEntry> mBanList; |
604 | std::map<LLUUID,LLAccessEntry> mTempBanList; | 608 | std::map<LLUUID,LLAccessEntry> mTempBanList; |
605 | std::map<LLUUID,LLAccessEntry> mTempAccessList; | 609 | std::map<LLUUID,LLAccessEntry> mTempAccessList; |
606 | |||
607 | //LLDynamicArray<LLAccessEntry> mRenterList; | ||
608 | }; | 610 | }; |
609 | 611 | ||
610 | 612 | ||