diff options
author | Oz Linden <oz@lindenlab.com> | 2014-10-13 17:13:15 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-10-13 17:13:15 -0400 |
commit | 852426d71e5b192a003d01d128799c2b702c69b1 (patch) | |
tree | 66a31f735c3dd92f557a9026cf359ef000d548e9 /indra/newview/llnotificationstorage.h | |
parent | 08a4d7a27743792a644c46f8163d973d0524cd79 (diff) | |
parent | 788ce7a8cdbbbf98566ce75ec281ec00c21dc6d8 (diff) |
merge changes for 3.7.17-release
Diffstat (limited to 'indra/newview/llnotificationstorage.h')
-rwxr-xr-x | indra/newview/llnotificationstorage.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llnotificationstorage.h b/indra/newview/llnotificationstorage.h index 53fd898ea4..21d7123747 100755 --- a/indra/newview/llnotificationstorage.h +++ b/indra/newview/llnotificationstorage.h @@ -43,13 +43,15 @@ public: protected: bool writeNotifications(const LLSD& pNotificationData) const; - bool readNotifications(LLSD& pNotificationData) const; + bool readNotifications(LLSD& pNotificationData, bool is_new_filename = true) const; void setFileName(std::string pFileName) {mFileName = pFileName;} + void setOldFileName(std::string pFileName) {mOldFileName = pFileName;} LLNotificationResponderInterface* createResponder(const std::string& pNotificationName, const LLSD& pParams) const; private: std::string mFileName; + std::string mOldFileName; }; #endif // LL_NOTIFICATIONSTORAGE_H |