diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2024-05-23 22:06:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 22:06:12 +0300 |
commit | 591a80765c4438f72795230824d2e549bafc592d (patch) | |
tree | d913b4083236bf6e4aa55861b52cb57341f0458c /indra/newview/llfloaterimnearbychat.cpp | |
parent | 58cf9c5c23c10752b26dcac384b51c85f9407ca6 (diff) | |
parent | c38e71411080af9e03646bbe34f766201d942afd (diff) |
Merge pull request #1547 from secondlife/lua-nearby-chat
Add support for sending messages to Nearby chat from Lua script
Diffstat (limited to 'indra/newview/llfloaterimnearbychat.cpp')
-rw-r--r-- | indra/newview/llfloaterimnearbychat.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llfloaterimnearbychat.cpp b/indra/newview/llfloaterimnearbychat.cpp index e64f468cbe..6b817c7cf1 100644 --- a/indra/newview/llfloaterimnearbychat.cpp +++ b/indra/newview/llfloaterimnearbychat.cpp @@ -52,6 +52,7 @@ #include "llfirstuse.h" #include "llfloaterimnearbychat.h" +#include "llfloaterimnearbychatlistener.h" #include "llagent.h" // gAgent #include "llgesturemgr.h" #include "llmultigesture.h" @@ -71,6 +72,8 @@ S32 LLFloaterIMNearbyChat::sLastSpecialChatChannel = 0; +static LLFloaterIMNearbyChatListener sChatListener; + const S32 EXPANDED_HEIGHT = 266; const S32 COLLAPSED_HEIGHT = 60; const S32 EXPANDED_MIN_HEIGHT = 150; |