summaryrefslogtreecommitdiff
path: root/indra/llui/llmenugl.h
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2024-05-15 18:50:51 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2024-05-15 18:50:51 +0300
commit9f540f10e687bb3889de191afbae3b52cc21f415 (patch)
tree48f561539193be6993dfd40e853a67b01cdb1812 /indra/llui/llmenugl.h
parentcec3b8d870085925cd0c9fb900b7d5e4629bcbfd (diff)
Add trusted flag to UI callbacks, so not everything is accessible from the script
Diffstat (limited to 'indra/llui/llmenugl.h')
-rw-r--r--indra/llui/llmenugl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h
index fdbfb38474..1dcf79d02c 100644
--- a/indra/llui/llmenugl.h
+++ b/indra/llui/llmenugl.h
@@ -950,16 +950,17 @@ public:
LLUICtrl::EnableCallbackRegistry::currentRegistrar().add(name, boost::bind(&view_listener_t::handleEvent, listener, _2));
}
- static void addCommit(view_listener_t* listener, const std::string& name)
+ static void addCommit(view_listener_t* listener, const std::string& name, bool allow_untrusted = false)
{
- LLUICtrl::CommitCallbackRegistry::currentRegistrar().add(name, boost::bind(&view_listener_t::handleEvent, listener, _2));
+ LLUICtrl::SharedCommitCallbackRegistry::currentRegistrar().add(name,
+ LLUICtrl::LLCommitCallbackInfo(boost::bind(&view_listener_t::handleEvent, listener, _2), allow_untrusted));
}
- static void addMenu(view_listener_t* listener, const std::string& name)
+ static void addMenu(view_listener_t* listener, const std::string& name, bool allow_untrusted = true)
{
// For now, add to both click and enable registries
addEnable(listener, name);
- addCommit(listener, name);
+ addCommit(listener, name, allow_untrusted);
}
static void cleanup()