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.
This commit is contained in:
Julian Eisel
2023-09-21 17:42:37 +02:00
parent 83306754d4
commit f292cd6823

View File

@@ -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;