summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-05-08 15:56:38 -0700
committerMerov Linden <merov@lindenlab.com>2014-05-08 15:56:38 -0700
commit4d14e1ca9600d7ca7023edbd3827fbff994c8110 (patch)
treeec1f9ee8ab1b45fbcdc49503282faba1324230a9 /indra/newview/llinventorybridge.cpp
parent00c1094c7d230fdf0670a7e8c2218bb6b1a677ca (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/llinventorybridge.cpp')
-rwxr-xr-xindra/newview/llinventorybridge.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 11ae3b6189..759716f024 100755
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -2754,7 +2754,7 @@ BOOL LLFolderBridge::dragCategoryIntoFolder(LLInventoryCategory* inv_cat,
{
update_marketplace_category(from_folder_uuid);
// Clear the folder from the marketplace in case it was a listing folder (moot if not listed)
- LLMarketplaceData::instance().deleteListing(cat_id);
+ LLMarketplaceData::instance().clearListing(cat_id);
}
}
}
@@ -3215,7 +3215,7 @@ void LLFolderBridge::performAction(LLInventoryModel* model, std::string action)
}
else if ("marketplace_disassociate_listing" == action)
{
- LLMarketplaceData::instance().deleteListing(mUUID);
+ LLMarketplaceData::instance().clearListing(mUUID);
return;
}
else if ("marketplace_associate_listing" == action)
@@ -3532,7 +3532,7 @@ void LLFolderBridge::pasteFromClipboard()
if (vicat)
{
// Clear the cut folder from the marketplace if it was a listing folder (moot if not listed)
- LLMarketplaceData::instance().deleteListing(item_id);
+ LLMarketplaceData::instance().clearListing(item_id);
if (move_is_into_marketplacelistings)
{
move_folder_to_marketplacelistings(vicat, parent_id);