Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -526,19 +526,19 @@ void MeshObject::load(std::istream& in)
|
||||
try {
|
||||
MeshCore::MeshEvalNeighbourhood nb(_kernel);
|
||||
if (!nb.Evaluate()) {
|
||||
Base::Console().Warning("Errors in neighbourhood of mesh found...");
|
||||
Base::Console().warning("Errors in neighbourhood of mesh found...");
|
||||
_kernel.RebuildNeighbours();
|
||||
Base::Console().Warning("fixed\n");
|
||||
Base::Console().warning("fixed\n");
|
||||
}
|
||||
|
||||
MeshCore::MeshEvalTopology eval(_kernel);
|
||||
if (!eval.Evaluate()) {
|
||||
Base::Console().Warning("The mesh data structure has some defects\n");
|
||||
Base::Console().warning("The mesh data structure has some defects\n");
|
||||
}
|
||||
}
|
||||
catch (const Base::MemoryException&) {
|
||||
// ignore memory exceptions and continue
|
||||
Base::Console().Log("Check for defects in mesh data structure failed\n");
|
||||
Base::Console().log("Check for defects in mesh data structure failed\n");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user