summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-02-03 21:55:18 -0500
committerLoren Shih <seraph@lindenlab.com>2010-02-03 21:55:18 -0500
commitf700be39e7dc9b9e6e56031818b94c329383a097 (patch)
treecf69db074e6f9378f52e1015584135e4ce8d5620
parent13aa8f8faaaefea59531a970bd0b6fe1d947b756 (diff)
EXT-4901 : Context menu missing on Scripts and Notecards in Trash
Simple string naming error.
-rw-r--r--indra/newview/llinventorybridge.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 4f02812cc6..ab178b4007 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -607,12 +607,12 @@ void LLInvFVBridge::buildContextMenu(LLMenuGL& menu, U32 flags)
std::vector<std::string> disabled_items;
if(isInTrash())
{
- items.push_back(std::string("PurgeItem"));
+ items.push_back(std::string("Purge Item"));
if (!isItemRemovable())
{
- disabled_items.push_back(std::string("PurgeItem"));
+ disabled_items.push_back(std::string("Purge Item"));
}
- items.push_back(std::string("RestoreItem"));
+ items.push_back(std::string("Restore Item"));
}
else
{