Console: rename PascalCase named methods to camelCase

This commit is contained in:
bofdahof
2025-03-30 00:50:27 +10:00
committed by Kacper Donat
parent d4ecf95ca5
commit 998f4e4d45
497 changed files with 2423 additions and 2425 deletions

View File

@@ -112,7 +112,7 @@ void ViewProviderCurveNet::updateData(const App::Property* prop)
computeVertices(VertexRoot,cShape);
}
catch (...){
Base::Console().Error("ViewProviderPart::create() Cannot compute Inventor representation for the actual shape");
Base::Console().error("ViewProviderPart::create() Cannot compute Inventor representation for the actual shape");
}
}
}
@@ -183,7 +183,7 @@ bool ViewProviderCurveNet::handleEvent(const SoEvent * const ev, Gui::View3DInve
switch (button) {
case SoMouseButtonEvent::BUTTON1:
if (press) {
Base::Console().Log("ViewProviderCurveNet::handleEvent() press left\n");
Base::Console().log("ViewProviderCurveNet::handleEvent() press left\n");
bool bIsNode = false;
for (const auto & It : NodeList)
@@ -207,7 +207,7 @@ bool ViewProviderCurveNet::handleEvent(const SoEvent * const ev, Gui::View3DInve
else if(Viewer.pickPoint(pos,point,norm))
{
Node n;
Base::Console().Log("Picked(%f,%f,%f)\n",point[0],point[1],point[2]);
Base::Console().log("Picked(%f,%f,%f)\n",point[0],point[1],point[2]);
SoSeparator *TransRoot = new SoSeparator();
n.pcTransform = new SoTransform();