diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-06-15 22:26:04 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-06-15 23:08:51 +0300 |
commit | 4de5576fb4bea538f3381f581d3caf54ee03fb05 (patch) | |
tree | 1db9011463c7eb8c1432a9b6f67750367c6bce18 /indra/newview/llinventorygallery.h | |
parent | d077558ed7fac01aae8d5a1670f4d0764ec6fbcb (diff) |
SL-19686 Remove gallery 'skipped' items
Probably whole observer is not nessesary, instead we need a general observer to track a variety of changes.
Diffstat (limited to 'indra/newview/llinventorygallery.h')
-rw-r--r-- | indra/newview/llinventorygallery.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/newview/llinventorygallery.h b/indra/newview/llinventorygallery.h index d82d466aaf..e314281a07 100644 --- a/indra/newview/llinventorygallery.h +++ b/indra/newview/llinventorygallery.h @@ -348,9 +348,7 @@ public: virtual void changed(U32 mask); bool addItem(const LLUUID& obj_id, callback_t cb); - void addSkippedItem(const LLUUID& obj_id, callback_t cb); void removeItem(const LLUUID& obj_id); - void removeSkippedItem(const LLUUID& obj_id); protected: @@ -370,7 +368,6 @@ protected: typedef std::map<LLUUID, LLItemData> item_map_t; typedef item_map_t::value_type item_map_value_t; item_map_t mItemMap; - item_map_t mSkippedItems; }; class LLGalleryGestureObserver : public LLGestureManagerObserver |