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

@@ -57,7 +57,7 @@ DockWidget_qtwidgets::~DockWidget_qtwidgets()
void DockWidget_qtwidgets::init()
{
connect(d->m_controller, &DockWidgetBase::widgetChanged, this, [this](QWidget *w) {
connect(d->m_controller, &Controllers::DockWidget::widgetChanged, this, [this](QWidget *w) {
d->layout->addWidget(w);
});
}