QToolbar: Un-hide the QLayout::indexOf non-virtual
Breaks the build with QT6_VIRTUAL qtoolbarlayout_p.h:99:9: error: 'QToolBarLayout::indexOf' hides overloaded virtual function [-Werror,-Woverloaded-virtual] Change-Id: I6efb28c3145047559ec0fffd15386c39739b42f9 Reviewed-by: David Faure <david.faure@kdab.com>
This commit is contained in:
parent
150b9327a4
commit
40d528d9fd
@ -97,7 +97,7 @@ public:
|
||||
|
||||
void insertAction(int index, QAction *action);
|
||||
int indexOf(QAction *action) const;
|
||||
int indexOf(QWidget *widget) const override { return QLayout::indexOf(widget); }
|
||||
using QLayout::indexOf; // bring back the hidden members
|
||||
|
||||
bool layoutActions(const QSize &size);
|
||||
QSize expandedSize(const QSize &size) const;
|
||||
|
Loading…
Reference in New Issue
Block a user