diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-05-22 20:29:55 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-05-22 20:29:55 +0300 |
commit | 0f00dc2f658869cc73a18b03b024a6cc88964e0b (patch) | |
tree | 8e8142f9cb61d8a543f164eb18aec9ed1e91c7c5 /indra/newview/llchathistory.h | |
parent | 58cf9c5c23c10752b26dcac384b51c85f9407ca6 (diff) |
Add support for sending messages to Nearby chat from Lua script
Diffstat (limited to 'indra/newview/llchathistory.h')
-rw-r--r-- | indra/newview/llchathistory.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.h b/indra/newview/llchathistory.h index b8364ff860..8acbea6ed5 100644 --- a/indra/newview/llchathistory.h +++ b/indra/newview/llchathistory.h @@ -101,7 +101,7 @@ class LLChatHistory : public LLUICtrl * Builds a message header. * @return pointer to LLView header object. */ - LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params, const LLSD& args); + LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params, const LLSD& args, bool is_script = false); public: ~LLChatHistory(); LLSD getValue() const; @@ -127,6 +127,7 @@ class LLChatHistory : public LLUICtrl LLDate mLastMessageTime; bool mIsLastMessageFromLog; bool mNotifyAboutUnreadMsg; + bool mIsLastFromScript; //std::string mLastMessageTimeStr; std::string mMessageHeaderFilename; |