More replacing of show() with open()

This time on DockWidgetViewInterface
This commit is contained in:
Sergio Martins
2022-09-10 12:40:54 +01:00
parent cf44110033
commit 4e3f4e3073
12 changed files with 28 additions and 25 deletions

View File

@@ -95,11 +95,16 @@ void DockWidgetViewInterface::forceClose()
m_dockWidget->forceClose();
}
void DockWidgetViewInterface::show()
void DockWidgetViewInterface::open()
{
m_dockWidget->open();
}
void DockWidgetViewInterface::show()
{
open();
}
void DockWidgetViewInterface::raise()
{
m_dockWidget->raise();