diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-10-31 23:17:10 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-10-31 23:17:10 +0200 |
commit | aadbb3d912af1184fd9c5210e5066d9d92e0dacd (patch) | |
tree | f92551e16bc5d3702d46b014d36f5a78bf25a9e3 /indra/newview/llfavoritesbar.h | |
parent | c0ed4b6ff5301a7c90b32e3f552f84b84ee80465 (diff) |
SL-11732 Validation for stored favorites
Diffstat (limited to 'indra/newview/llfavoritesbar.h')
-rw-r--r-- | indra/newview/llfavoritesbar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfavoritesbar.h b/indra/newview/llfavoritesbar.h index d93161fd7a..571208aa31 100644 --- a/indra/newview/llfavoritesbar.h +++ b/indra/newview/llfavoritesbar.h @@ -248,6 +248,7 @@ private: slurls_map_t mSLURLs; std::set<LLUUID> mMissingSLURLs; bool mIsDirty; + bool mRecreateFavoriteStorage; struct IsNotInFavorites { @@ -278,7 +279,9 @@ private: inline LLFavoritesOrderStorage::LLFavoritesOrderStorage() : - mIsDirty(false), mUpdateRequired(false) + mIsDirty(false), + mUpdateRequired(false), + mRecreateFavoriteStorage(false) { load(); } #endif // LL_LLFAVORITESBARCTRL_H |