diff options
author | Kent Quirk <q@lindenlab.com> | 2011-02-07 20:03:45 -0500 |
---|---|---|
committer | Kent Quirk <q@lindenlab.com> | 2011-02-07 20:03:45 -0500 |
commit | 24c908483cb1fdceeb222129c4f329969779d6ca (patch) | |
tree | c8f6537a8cc7d50a71474525f1052e57dd729145 /indra/llinventory | |
parent | 09b009fc23e75c8403cc9879f7f839d9e2656c02 (diff) |
STORM-969 / ER-493 - Viewer side of the work to add 'Rentals' as a land type to the parcel API
Diffstat (limited to 'indra/llinventory')
-rw-r--r-- | indra/llinventory/llparcel.cpp | 2 | ||||
-rw-r--r-- | indra/llinventory/llparcel.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp index 488bd45d8f..d2409375e3 100644 --- a/indra/llinventory/llparcel.cpp +++ b/indra/llinventory/llparcel.cpp @@ -72,6 +72,7 @@ static const std::string PARCEL_CATEGORY_STRING[LLParcel::C_COUNT] = "shopping", "stage", "other", + "rental" }; static const std::string PARCEL_CATEGORY_UI_STRING[LLParcel::C_COUNT + 1] = { @@ -89,6 +90,7 @@ static const std::string PARCEL_CATEGORY_UI_STRING[LLParcel::C_COUNT + 1] = "Shopping", "Stage", "Other", + "Rental", "Any", // valid string for parcel searches }; diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h index ae301af9f5..751e2deb84 100644 --- a/indra/llinventory/llparcel.h +++ b/indra/llinventory/llparcel.h @@ -165,6 +165,7 @@ public: C_SHOPPING, C_STAGE, C_OTHER, + C_RENTAL, C_COUNT, C_ANY = -1 // only useful in queries }; |