summaryrefslogtreecommitdiff
path: root/indra/newview/lluilistener.cpp
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2024-06-10 15:41:55 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2024-06-10 15:41:55 +0300
commite99c494418b4eec21ce3c17c5e642c253fae8084 (patch)
treedcf6b7cb4b43d374f9d35bff271b6e18dcbfa903 /indra/newview/lluilistener.cpp
parentad608dbc5f0d57ad29ec3a15e4d0a434dfaa38d2 (diff)
another batch of changes to use ScopedRegistrarHelper
Diffstat (limited to 'indra/newview/lluilistener.cpp')
-rw-r--r--indra/newview/lluilistener.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lluilistener.cpp b/indra/newview/lluilistener.cpp
index 604f766ab2..3ec300ffba 100644
--- a/indra/newview/lluilistener.cpp
+++ b/indra/newview/lluilistener.cpp
@@ -63,7 +63,7 @@ typedef LLUICtrl::CommitCallbackInfo cb_info;
void LLUIListener::call(const LLSD& event)
{
Response response(LLSD(), event);
- LLUICtrl::CommitCallbackInfo *info = LLUICtrl::SharedCommitCallbackRegistry::getValue(event["function"]);
+ LLUICtrl::CommitCallbackInfo *info = LLUICtrl::CommitCallbackRegistry::getValue(event["function"]);
if (!info )
{
return response.error(stringize("Function ", std::quoted(event["function"].asString()), " was not found"));