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

@@ -944,13 +944,13 @@ bool FaceTypedBSpline::isEqual(const TopoDS_Face &faceOne, const TopoDS_Face &fa
stream << "FaceTypedBSpline::isEqual: OCC Error: " << e.GetMessageString() << std::endl;
else
stream << "FaceTypedBSpline::isEqual: Unknown OCC Error" << std::endl;
Base::Console().Message(stream.str().c_str());
Base::Console().message(stream.str().c_str());
}
catch (...)
{
std::ostringstream stream;
stream << "FaceTypedBSpline::isEqual: Unknown Error" << std::endl;
Base::Console().Message(stream.str().c_str());
Base::Console().message(stream.str().c_str());
}
return false;