diff options
Diffstat (limited to 'indra/newview/lldonotdisturbnotificationstorage.h')
-rw-r--r-- | indra/newview/lldonotdisturbnotificationstorage.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/indra/newview/lldonotdisturbnotificationstorage.h b/indra/newview/lldonotdisturbnotificationstorage.h index 1432d37de6..2d39b5efed 100644 --- a/indra/newview/lldonotdisturbnotificationstorage.h +++ b/indra/newview/lldonotdisturbnotificationstorage.h @@ -1,4 +1,4 @@ -/** +/** * @file lldonotdisturbnotificationstorage.h * @brief Header file for lldonotdisturbnotificationstorage * @author Stinson@lindenlab.com @@ -42,23 +42,23 @@ public: ~LLDoNotDisturbNotificationStorageTimer(); public: - BOOL tick(); + bool tick() override; }; class LLDoNotDisturbNotificationStorage : public LLParamSingleton<LLDoNotDisturbNotificationStorage>, public LLNotificationStorage { - LLSINGLETON(LLDoNotDisturbNotificationStorage); - ~LLDoNotDisturbNotificationStorage(); + LLSINGLETON(LLDoNotDisturbNotificationStorage); + ~LLDoNotDisturbNotificationStorage(); - LOG_CLASS(LLDoNotDisturbNotificationStorage); + LOG_CLASS(LLDoNotDisturbNotificationStorage); public: static const char * toastName; static const char * offerName; bool getDirty(); void resetDirty(); - void saveNotifications(); - void loadNotifications(); + void saveNotifications(); + void loadNotifications(); void updateNotifications(); void removeNotification(const char * name, const LLUUID& id); void reset(); @@ -71,8 +71,8 @@ private: bool mDirty; LLDoNotDisturbNotificationStorageTimer mTimer; - LLNotificationChannelPtr getCommunicationChannel() const; - bool onChannelChanged(const LLSD& pPayload); + LLNotificationChannelPtr getCommunicationChannel() const; + bool onChannelChanged(const LLSD& pPayload); std::map<std::string, std::string> nameToPayloadParameterMap; }; |