diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-05-15 18:50:51 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-05-15 18:50:51 +0300 |
commit | 9f540f10e687bb3889de191afbae3b52cc21f415 (patch) | |
tree | 48f561539193be6993dfd40e853a67b01cdb1812 /indra/llui/llmenugl.h | |
parent | cec3b8d870085925cd0c9fb900b7d5e4629bcbfd (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.h | 9 |
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() |