diff options
author | Roxanne Skelly <roxie@lindenlab.com> | 2024-05-20 14:36:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 14:36:14 -0700 |
commit | a1d7d2abc304b59fbca26f0ca23c926762be10a1 (patch) | |
tree | fcb3901b838af753e40c2ddd1ce84b95a6c2f603 /indra/newview/llconversationloglistitem.h | |
parent | f51797f088808029745161854aa86b775f041a64 (diff) | |
parent | 3a212d9608492ae64a3a32f80790371b90be9e9e (diff) |
Merge pull request #1532 from secondlife/roxie/webrtc-voice
[WebRTC] Merge from main
Diffstat (limited to 'indra/newview/llconversationloglistitem.h')
-rw-r--r-- | indra/newview/llconversationloglistitem.h | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/indra/newview/llconversationloglistitem.h b/indra/newview/llconversationloglistitem.h index ee28456bbb..9c13efc6cb 100644 --- a/indra/newview/llconversationloglistitem.h +++ b/indra/newview/llconversationloglistitem.h @@ -36,51 +36,51 @@ class LLConversation; * This class is a visual representation of LLConversation, each of which is LLConversationLog entry. * LLConversationLogList consists of these LLConversationLogListItems. * LLConversationLogListItem consists of: - * conversaion_type_icon - * conversaion_name - * conversaion_date + * conversaion_type_icon + * conversaion_name + * conversaion_date * Also LLConversationLogListItem holds pointer to its LLConversationLog. */ class LLConversationLogListItem : public LLPanel { public: - LLConversationLogListItem(const LLConversation* conversation); - virtual ~LLConversationLogListItem(); + LLConversationLogListItem(const LLConversation* conversation); + virtual ~LLConversationLogListItem(); - void onMouseEnter(S32 x, S32 y, MASK mask); - void onMouseLeave(S32 x, S32 y, MASK mask); + void onMouseEnter(S32 x, S32 y, MASK mask); + void onMouseLeave(S32 x, S32 y, MASK mask); - virtual void setValue(const LLSD& value); + virtual void setValue(const LLSD& value); - virtual BOOL postBuild(); + virtual BOOL postBuild(); - void onIMFloaterShown(const LLUUID& session_id); - void onRemoveBtnClicked(); + void onIMFloaterShown(const LLUUID& session_id); + void onRemoveBtnClicked(); - const LLConversation* getConversation() const { return mConversation; } + const LLConversation* getConversation() const { return mConversation; } - void highlightNameDate(const std::string& highlited_text); + void highlightNameDate(const std::string& highlited_text); - void onDoubleClick(); + void onDoubleClick(); - /** - * updates string value of last interaction time from conversation - */ - void updateTimestamp(); - void updateName(); - void updateOfflineIMs(); + /** + * updates string value of last interaction time from conversation + */ + void updateTimestamp(); + void updateName(); + void updateOfflineIMs(); private: - void initIcons(); + void initIcons(); - const LLConversation* mConversation; + const LLConversation* mConversation; - LLTextBox* mConversationName; - LLTextBox* mConversationDate; + LLTextBox* mConversationName; + LLTextBox* mConversationDate; - boost::signals2::connection mIMFloaterShowedConnection; + boost::signals2::connection mIMFloaterShowedConnection; }; #endif /* LLCONVERSATIONLOGITEM_H_ */ |