diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-15 12:06:42 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-15 12:07:29 +0300 |
commit | dcb85f9f9d1019bb046a5719bc3645fa96a2d060 (patch) | |
tree | 2a75406ca1ab8d15e88066dfdc7440c93d0d7c63 /indra/newview/llconversationloglistitem.h | |
parent | 26f70456d1e9059c48d25e08fc07f893315b1f3c (diff) | |
parent | e7eced3c87310b15ac20cc3cd470d67686104a14 (diff) |
Merge branch 'marchcat/w-whitespace' into release/maint-c
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_ */ |