Fix unused private field warning on clang

More methods to be implemented soon, but let's have at least 1
now to get rid of the warning
This commit is contained in:
Sergio Martins
2022-03-25 11:22:26 +00:00
parent 9fba1e9799
commit 65a6201121
4 changed files with 7 additions and 7 deletions

View File

@@ -25,6 +25,8 @@ class DOCKS_EXPORT ViewWrapper_qtwidgets : public ViewWrapper
public:
explicit ViewWrapper_qtwidgets(QWidget *widget);
QRect geometry() const override;
private:
QWidget *const m_widget;
};