summaryrefslogtreecommitdiff
path: root/indra/newview/llconversationloglistitem.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:43:28 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:56:09 +0300
commit1b68f71348ecf3983b76b40d7940da8377f049b7 (patch)
tree2974eddaef130a067c26033d60a59fc790365b3d /indra/newview/llconversationloglistitem.h
parentaf4ea94efc1999f3b19fd8d643d0331f0b77e265 (diff)
#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed
Diffstat (limited to 'indra/newview/llconversationloglistitem.h')
-rw-r--r--indra/newview/llconversationloglistitem.h50
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_ */