diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-11-02 02:07:38 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-11-02 02:19:05 +0200 |
commit | 0ab4edd019d84aa5683b9cc77c66e81be2fa58a4 (patch) | |
tree | ffd8902ff1e7d29b6de22800efbcc3d78d873ade /indra/newview | |
parent | 54bfff622d025b29216aca8d134c0f5cad89597d (diff) |
DRTVWR-594 Mac buildfix (remove unused field)
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/lloutfitgallery.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/newview/lloutfitgallery.h b/indra/newview/lloutfitgallery.h index d27352eb3b..b18151599f 100644 --- a/indra/newview/lloutfitgallery.h +++ b/indra/newview/lloutfitgallery.h @@ -195,16 +195,13 @@ public: friend class LLOutfitGallery; LLOutfitGalleryContextMenu(LLOutfitListBase* outfit_list) - : LLOutfitContextMenu(outfit_list), - mOutfitList(outfit_list){} + : LLOutfitContextMenu(outfit_list){} protected: /* virtual */ LLContextMenu* createMenu(); bool onEnable(LLSD::String param); bool onVisible(LLSD::String param); void onCreate(const LLSD& data); -private: - LLOutfitListBase* mOutfitList; }; |