From f292cd68231b5018903dc6c467b246e45996702d Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 21 Sep 2023 17:42:37 +0200 Subject: [PATCH] Fix duplicated member in grid view item class This member is located in the `AbstractViewItem` class now, which is a base class of this. Not sure why this didn't cause issues before. --- source/blender/editors/include/UI_grid_view.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/editors/include/UI_grid_view.hh b/source/blender/editors/include/UI_grid_view.hh index 1adbf6b6dff..167d76ad2d9 100644 --- a/source/blender/editors/include/UI_grid_view.hh +++ b/source/blender/editors/include/UI_grid_view.hh @@ -40,8 +40,6 @@ class AbstractGridViewItem : public AbstractViewItem { protected: /** Reference to a string that uniquely identifies this item in the view. */ StringRef identifier_{}; - /** Every visible item gets a button of type #UI_BTYPE_VIEW_ITEM during the layout building. */ - uiButViewItem *view_item_but_ = nullptr; public: /* virtual */ ~AbstractGridViewItem() override = default;