Removed the DockWidgetBase typedef

That existed only to ease porting
This commit is contained in:
Sergio Martins
2022-05-10 22:53:16 +01:00
parent 855b572656
commit 9f7c4cb217
46 changed files with 287 additions and 281 deletions

View File

@@ -155,7 +155,7 @@ QQuickItem *DockWidget_qtquick::frameVisualItem() const
void DockWidget_qtquick::onGeometryUpdated()
{
if (auto frame = qobject_cast<FrameQuick *>(DockWidgetBase::d->frame())) {
if (auto frame = qobject_cast<FrameQuick *>(Controllers::DockWidget::d->frame())) {
frame->updateConstriants();
frame->updateGeometry();
}
@@ -163,5 +163,5 @@ void DockWidget_qtquick::onGeometryUpdated()
Frame *DockWidget_qtquick::frame() const
{
return qobject_cast<FrameQuick *>(DockWidgetBase::d->frame());
return qobject_cast<FrameQuick *>(Controllers::DockWidget::d->frame());
}