summaryrefslogtreecommitdiff
path: root/indra/newview/llcommunicationchannel.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/llcommunicationchannel.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/llcommunicationchannel.h')
-rw-r--r--indra/newview/llcommunicationchannel.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/indra/newview/llcommunicationchannel.h b/indra/newview/llcommunicationchannel.h
index 0d8f7f4387..f601de1dc4 100644
--- a/indra/newview/llcommunicationchannel.h
+++ b/indra/newview/llcommunicationchannel.h
@@ -1,4 +1,4 @@
-/**
+/**
* @file llcommunicationchannel.h
* @brief Header file for llcommunicationchannel
* @author Stinson@lindenlab.com
@@ -36,30 +36,30 @@
class LLCommunicationChannel : public LLNotificationChannel
{
- LOG_CLASS(LLCommunicationChannel);
+ LOG_CLASS(LLCommunicationChannel);
public:
- LLCommunicationChannel(const std::string& pName, const std::string& pParentName);
- virtual ~LLCommunicationChannel();
+ LLCommunicationChannel(const std::string& pName, const std::string& pParentName);
+ virtual ~LLCommunicationChannel();
- static bool filterByDoNotDisturbStatus(LLNotificationPtr);
+ static bool filterByDoNotDisturbStatus(LLNotificationPtr);
- typedef std::multimap<LLDate, LLNotificationPtr> history_list_t;
- S32 getHistorySize() const;
- history_list_t::const_iterator beginHistory() const;
- history_list_t::const_iterator endHistory() const;
+ typedef std::multimap<LLDate, LLNotificationPtr> history_list_t;
+ S32 getHistorySize() const;
+ history_list_t::const_iterator beginHistory() const;
+ history_list_t::const_iterator endHistory() const;
history_list_t::iterator beginHistory();
- history_list_t::iterator endHistory();
+ history_list_t::iterator endHistory();
- void clearHistory();
+ void clearHistory();
void removeItemFromHistory(LLNotificationPtr p);
protected:
virtual void onDelete(LLNotificationPtr p);
- virtual void onFilterFail(LLNotificationPtr pNotificationPtr);
+ virtual void onFilterFail(LLNotificationPtr pNotificationPtr);
private:
- history_list_t mHistory;
+ history_list_t mHistory;
};
#endif // LL_LLCOMMUNICATIONCHANNEL_H