summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatercreatelandmark.cpp
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2021-03-29 18:32:02 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2021-03-29 18:32:02 +0300
commit100fa900c09110f215ab241cd2fd3d237dfb96fd (patch)
tree4b73baa4a114a09f73b7ceda6ccd68ef662e1b67 /indra/newview/llfloatercreatelandmark.cpp
parent33eadba6ef703c1fb0a8f4bffe49ccea224fb77f (diff)
SL-14900 remove created landmark when clicking Cancel button
Diffstat (limited to 'indra/newview/llfloatercreatelandmark.cpp')
-rw-r--r--indra/newview/llfloatercreatelandmark.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloatercreatelandmark.cpp b/indra/newview/llfloatercreatelandmark.cpp
index 95ddacbb6c..db84a2ac76 100644
--- a/indra/newview/llfloatercreatelandmark.cpp
+++ b/indra/newview/llfloatercreatelandmark.cpp
@@ -216,7 +216,7 @@ void LLFloaterCreateLandmark::onCreateFolderClicked()
if (!folder_name.empty())
{
inventory_func_type func = boost::bind(&LLFloaterCreateLandmark::folderCreatedCallback, this, _1);
- LLUUID test = gInventory.createNewCategory(mLandmarksID, LLFolderType::FT_NONE, folder_name, func);
+ gInventory.createNewCategory(mLandmarksID, LLFolderType::FT_NONE, folder_name, func);
gInventory.notifyObservers();
}
}
@@ -282,6 +282,8 @@ void LLFloaterCreateLandmark::onSaveClicked()
void LLFloaterCreateLandmark::onCancelClicked()
{
+ LLUUID item_id = mItem->getUUID();
+ remove_inventory_item(item_id, NULL);
closeFloater();
}