diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-15 12:46:26 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-15 12:46:26 +0300 |
commit | bf1235b017b254ba989b156c73c4ce18ba4e6c23 (patch) | |
tree | 8dd5dad68be3aa5cda16938cc3bfaa70f6faad41 /indra/newview/llconversationloglistitem.h | |
parent | 1e9e5a7b7629276d509c352699fb5891c2dc6587 (diff) | |
parent | e7eced3c87310b15ac20cc3cd470d67686104a14 (diff) |
Merge branch 'marchcat/w-whitespace' into marchcat/x-mf-merge
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_ */ |