Rename MDIArea class to MDIArea_qtwidgets

To match the filename now
This commit is contained in:
Sergio Martins
2022-06-18 18:15:19 +01:00
parent 408fe315ed
commit 60c6ffaabb
6 changed files with 25 additions and 21 deletions

View File

@@ -310,7 +310,7 @@ void TestQtWidgets::tst_mdi_mixed_with_docking()
m->addDockWidget(dock1, Location_OnBottom);
auto mdiArea = new MDIArea();
auto mdiArea = new Views::MDIArea_qtwidgets();
m->setPersistentCentralView(std::shared_ptr<ViewWrapper>(new Views::ViewWrapper_qtwidgets(mdiArea)));
auto mdiWidget1 = createDockWidget("mdi1", new QPushButton("mdi1"));
@@ -356,7 +356,7 @@ void TestQtWidgets::tst_mdi_mixed_with_docking2()
m->addDockWidget(dock1, Location_OnBottom);
auto mdiArea = new MDIArea();
auto mdiArea = new Views::MDIArea_qtwidgets();
m->setPersistentCentralView(std::shared_ptr<ViewWrapper>(new Views::ViewWrapper_qtwidgets(mdiArea)));
@@ -527,7 +527,7 @@ void TestQtWidgets::tst_mdi_mixed_with_docking_setMDISize()
m->addDockWidget(dock1, Location_OnBottom);
auto mdiArea = new MDIArea();
auto mdiArea = new Views::MDIArea_qtwidgets();
m->setPersistentCentralView(std::shared_ptr<ViewWrapper>(new Views::ViewWrapper_qtwidgets(mdiArea)));
auto createSheet = [](int id) -> Controllers::DockWidget * {