diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2019-07-16 18:38:26 +0300 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2019-07-16 18:38:26 +0300 |
commit | d394f088655188649faef38d04eb6b0069062ed0 (patch) | |
tree | 0d55dba12e255d8bc199604bb962485f001de5c4 /indra/newview/llpanelprofileclassifieds.h | |
parent | 59a8f73725a23e748d9f54e033735535e617dce7 (diff) |
SL-11593 Remove 'Price for listing' from Profile - Classified tab
Diffstat (limited to 'indra/newview/llpanelprofileclassifieds.h')
-rw-r--r-- | indra/newview/llpanelprofileclassifieds.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/newview/llpanelprofileclassifieds.h b/indra/newview/llpanelprofileclassifieds.h index 53ee41cf04..31ef1c65b3 100644 --- a/indra/newview/llpanelprofileclassifieds.h +++ b/indra/newview/llpanelprofileclassifieds.h @@ -185,7 +185,7 @@ public: bool getAutoRenew(); - S32 getPriceForListing(); + S32 getPriceForListing() { return mPriceForListing; } void setEditMode(BOOL edit_mode); bool getEditMode() {return mEditMode;} @@ -239,7 +239,7 @@ protected: std::string makeClassifiedName(); - void setPriceForListing(S32 price); + void setPriceForListing(S32 price) { mPriceForListing = price; } U8 getFlags(); @@ -318,8 +318,6 @@ private: LLIconCtrl* mContentTypeG; LLComboBox* mContentTypeCombo; LLUICtrl* mPriceText; - LLUICtrl* mPriceEdit; - LLUICtrl* mPricelabel; LLUICtrl* mAutoRenewText; LLUICtrl* mAutoRenewEdit; @@ -358,6 +356,7 @@ private: S32 mMapClicksNew; S32 mProfileClicksNew; + S32 mPriceForListing; static void handleSearchStatResponse(LLUUID classifiedId, LLSD result); |