diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-24 11:12:11 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-24 11:12:11 -0400 |
commit | 9d9ecb2462e559057a2fc226bd6e7c90f5eb6c61 (patch) | |
tree | 2e31025a7b9299e473e80599d96ab5ec1c5f6739 /indra/newview/llchatitemscontainerctrl.h | |
parent | e2f179b9edebca1557ce3f774781bb9b9350b781 (diff) | |
parent | 30da8853c88e755ac5c0836f3952d16d501d3502 (diff) |
Merge branch 'release/luau-scripting' into lua-timers
Diffstat (limited to 'indra/newview/llchatitemscontainerctrl.h')
-rw-r--r-- | indra/newview/llchatitemscontainerctrl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llchatitemscontainerctrl.h b/indra/newview/llchatitemscontainerctrl.h index d041615060..7df00e8fd9 100644 --- a/indra/newview/llchatitemscontainerctrl.h +++ b/indra/newview/llchatitemscontainerctrl.h @@ -48,7 +48,8 @@ protected: LLFloaterIMNearbyChatToastPanel() : mIsDirty(false), - mSourceType(CHAT_SOURCE_OBJECT) + mSourceType(CHAT_SOURCE_OBJECT), + mIsFromScript(false) {}; public: ~LLFloaterIMNearbyChatToastPanel(){} @@ -58,6 +59,8 @@ public: const LLUUID& getFromID() const { return mFromID;} const std::string& getFromName() const { return mFromName; } + bool isFromScript() { return mIsFromScript; } + //void addText (const std::string& message , const LLStyle::Params& input_params = LLStyle::Params()); //void setMessage (const LLChat& msg); void snapToMessageHeight (); @@ -88,6 +91,7 @@ private: std::string mFromName; EChatSourceType mSourceType; LLChatMsgBox* mMsgText; + bool mIsFromScript; |