Replace View_qtquick::windowIsBeingDestroyed with View::aboutToBeDestroyed

Easier if it's generic.
This commit is contained in:
Sergio Martins
2022-05-27 14:26:34 +01:00
parent da8539820e
commit 586ed8d70b
5 changed files with 24 additions and 13 deletions

View File

@@ -341,3 +341,13 @@ HANDLE View::handle() const
{
return m_thisObj;
}
void View::setAboutToBeDestroyed()
{
m_aboutToBeDestroyed = true;
}
bool View::aboutToBeDestroyed() const
{
return m_aboutToBeDestroyed;
}