diff options
author | Merov Linden <merov@lindenlab.com> | 2014-05-07 16:44:14 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-05-07 16:44:14 -0700 |
commit | 00c1094c7d230fdf0670a7e8c2218bb6b1a677ca (patch) | |
tree | 14695b0019bf4cc2aee9fc9019ac6735554be8a0 /indra/newview/llmarketplacefunctions.h | |
parent | bd0d62c339d197ec2fa50cc642a864071677dc3a (diff) |
DD-22 : WIP : Completed the associate_listing route, take edit_url into account and rewrite getListingURL()
Diffstat (limited to 'indra/newview/llmarketplacefunctions.h')
-rwxr-xr-x | indra/newview/llmarketplacefunctions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llmarketplacefunctions.h b/indra/newview/llmarketplacefunctions.h index 3be1abf24f..ed4af544db 100755 --- a/indra/newview/llmarketplacefunctions.h +++ b/indra/newview/llmarketplacefunctions.h @@ -143,6 +143,7 @@ private: S32 mListingId; LLUUID mVersionFolderId; bool mIsActive; + std::string mEditURL; }; // Note: The listing folder UUID is used as a key to this map. It could therefore be taken off the LLMarketplaceTuple objects themselves typedef std::map<LLUUID, LLMarketplaceTuple> marketplace_items_list_t; @@ -193,6 +194,7 @@ public: bool setListingID(const LLUUID& folder_id, S32 listing_id); bool setVersionFolderID(const LLUUID& folder_id, const LLUUID& version_id); bool setActivation(const LLUUID& folder_id, bool activate); + bool setEditURL(const LLUUID& folder_id, const std::string& edit_url); // Used to flag if count values for Marketplace are likely to have to be updated bool checkDirtyCount() { if (mDirtyCount) { mDirtyCount = false; return true; } else { return false; } } |