Gui: fix naming inconsistency and rename 'combi' to 'combo'

This commit is contained in:
wmayer
2020-02-08 13:43:44 +01:00
parent c89a62ba52
commit 8648bbe3df
10 changed files with 66 additions and 65 deletions

View File

@@ -168,6 +168,6 @@ Gui::DockWindowItems* StartGui::Workbench::setupDockWindows() const
{
Gui::DockWindowItems* root = Gui::StdWorkbench::setupDockWindows();
root->setVisibility(false); // hide all dock windows by default
root->setVisibility("Std_CombiView",true); // except of the combi view
root->setVisibility("Std_ComboView",true); // except of the combo view
return root;
}

View File

@@ -351,6 +351,6 @@ Gui::DockWindowItems* Workbench::setupDockWindows() const
{
Gui::DockWindowItems* root = Gui::StdWorkbench::setupDockWindows();
//root->setVisibility(false); // hide all dock windows by default
//root->setVisibility("Std_CombiView",true); // except of the combi view
//root->setVisibility("Std_ComboView",true); // except of the combo view
return root;
}