Move DropArea into Controllers namespace

In preparation for View/Controller split.
This commit is contained in:
Sergio Martins
2022-04-23 12:14:30 +01:00
parent daa6afd14c
commit 860a1a1bb0
20 changed files with 55 additions and 44 deletions

View File

@@ -300,9 +300,9 @@ bool ViewWrapper_qtwidgets::isNull() const
return m_widget.data() == nullptr;
}
DropArea *ViewWrapper_qtwidgets::asDropArea() const
Controllers::DropArea *ViewWrapper_qtwidgets::asDropArea() const
{
return qobject_cast<DropArea *>(m_widget);
return qobject_cast<Controllers::DropArea *>(m_widget);
}
QWidget *ViewWrapper_qtwidgets::widget() const