diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-08-24 10:37:57 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-08-24 10:37:57 -0400 |
commit | 7b21acd39745d265548eeb62d687cde9febb1f7a (patch) | |
tree | 6aff39daaa153aaf32eef8f6e855dbfd34a104de /indra/newview/scripts/lua/require | |
parent | e6d8379744b08f9a52af6734ba1f0e1b50fb5906 (diff) |
Update test scripts to reference UI.Floater, not standalone Floater.
Diffstat (limited to 'indra/newview/scripts/lua/require')
-rw-r--r-- | indra/newview/scripts/lua/require/LLChatListener.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/scripts/lua/require/LLChatListener.lua b/indra/newview/scripts/lua/require/LLChatListener.lua index 428dca881e..82b28966ce 100644 --- a/indra/newview/scripts/lua/require/LLChatListener.lua +++ b/indra/newview/scripts/lua/require/LLChatListener.lua @@ -23,7 +23,7 @@ function LLChatListener:handleMessages(event_data) end function LLChatListener:start() - waitfor = leap.WaitFor:new(-1, self.name) + waitfor = leap.WaitFor(-1, self.name) function waitfor:filter(pump, data) if pump == "LLNearbyChat" then return data |