diff options
author | Merov Linden <merov@lindenlab.com> | 2014-05-08 15:56:38 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-05-08 15:56:38 -0700 |
commit | 4d14e1ca9600d7ca7023edbd3827fbff994c8110 (patch) | |
tree | ec1f9ee8ab1b45fbcdc49503282faba1324230a9 /indra/newview/llinventoryfunctions.cpp | |
parent | 00c1094c7d230fdf0670a7e8c2218bb6b1a677ca (diff) |
DD-22 : WIP : Cleanep up the class definition, seting methods private and better isolate calls leading to HTTP requests
Diffstat (limited to 'indra/newview/llinventoryfunctions.cpp')
-rwxr-xr-x | indra/newview/llinventoryfunctions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp index 413c0d4b4b..f92831ccc5 100755 --- a/indra/newview/llinventoryfunctions.cpp +++ b/indra/newview/llinventoryfunctions.cpp @@ -167,8 +167,8 @@ void update_marketplace_category(const LLUUID& cur_uuid) { // *TODO : Confirm with Producer that this is what we want to happen in that case! llinfos << "Merov : Unlist as the version folder is not under the listing folder anymore!!" << llendl; - LLMarketplaceData::instance().setVersionFolderID(listing_uuid, LLUUID::null); - LLMarketplaceData::instance().setActivation(listing_uuid, false); + LLMarketplaceData::instance().setVersionFolder(listing_uuid, LLUUID::null); + LLMarketplaceData::instance().activateListing(listing_uuid, false); } } @@ -181,7 +181,7 @@ void update_marketplace_category(const LLUUID& cur_uuid) { // *TODO : Confirm with Producer that this is what we want to happen in that case! llinfos << "Merov : Disassociate as the listing folder is not under the marketplace folder anymore!!" << llendl; - LLMarketplaceData::instance().deleteListing(cur_uuid); + LLMarketplaceData::instance().clearListing(cur_uuid); } } |