All: Reformat according to new standard

This commit is contained in:
pre-commit-ci[bot]
2025-11-11 13:49:01 +01:00
committed by Kacper Donat
parent eafd18dac0
commit 25c3ba7338
2390 changed files with 154630 additions and 115818 deletions

View File

@@ -37,25 +37,24 @@ PROPERTY_SOURCE(PartGui::ViewProviderBox, PartGui::ViewProviderPrimitive)
ViewProviderBox::ViewProviderBox()
{
sPixmap = "Part_Box_Parametric";
sPixmap = "Part_Box_Parametric";
}
ViewProviderBox::~ViewProviderBox() = default;
// **********************************************************************************
std::vector<std::string> ViewProviderBox::getDisplayModes() const
{
// get the modes of the father
std::vector<std::string> StrList;
// get the modes of the father
std::vector<std::string> StrList;
// add your own modes
StrList.emplace_back("Flat Lines");
StrList.emplace_back("Shaded");
StrList.emplace_back("Wireframe");
StrList.emplace_back("Points");
// add your own modes
StrList.emplace_back("Flat Lines");
StrList.emplace_back("Shaded");
StrList.emplace_back("Wireframe");
StrList.emplace_back("Points");
return StrList;
return StrList;
}