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

@@ -20,3 +20,8 @@ ViewWrapper_qtwidgets::ViewWrapper_qtwidgets(QWidget *widget)
, m_widget(widget)
{
}
QRect ViewWrapper_qtwidgets::geometry() const
{
return m_widget->geometry();
}