diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-07-20 19:46:57 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-07-20 19:46:57 +0300 |
commit | d7b4a15a12b4097cc400317ac8e53e6135832196 (patch) | |
tree | 677bdb453eaf5cffea97dd29805afc2bd0698339 /indra/newview/llfloaterpreference.h | |
parent | 5d13ae64338f759c66ed4275cd407a461541b14f (diff) |
SL-17569 restore previous list of ignored notifications after pressing the Cancel button
Diffstat (limited to 'indra/newview/llfloaterpreference.h')
-rw-r--r-- | indra/newview/llfloaterpreference.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpreference.h b/indra/newview/llfloaterpreference.h index 5ef2ca68d3..5797f7be8d 100644 --- a/indra/newview/llfloaterpreference.h +++ b/indra/newview/llfloaterpreference.h @@ -144,6 +144,9 @@ public: // cancel() can restore them. void saveSettings(); + void saveIgnoredNotifications(); + void restoreIgnoredNotifications(); + void setCacheLocation(const LLStringExplicit& location); void onClickSetCache(); @@ -224,6 +227,8 @@ private: void onUpdateFilterTerm( bool force = false ); void collectSearchableItems(); + + std::map<std::string, bool> mIgnorableNotifs; }; class LLPanelPreference : public LLPanel |