View::closeWindow() is no longer virtual.

Implementation is common to all frontends.
Renamed it to closeRootView() to be consistent.
This commit is contained in:
Sergio Martins
2022-05-02 17:36:54 +01:00
parent 96912515a8
commit cccd3a47f0
12 changed files with 36 additions and 32 deletions

View File

@@ -352,3 +352,8 @@ void ViewWrapper_qtwidgets::setParent(View *parent)
{
Views::View_qtwidgets<QWidget>::setParentFor(m_widget, parent);
}
bool ViewWrapper_qtwidgets::close()
{
return m_widget->close();
}