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 1dbc0638c3
commit ba2c2ca5ad
497 changed files with 2423 additions and 2425 deletions

View File

@@ -533,7 +533,7 @@ void CmdSandboxEventLoop::activated(int)
timer.start(5000); // 5s timeout
loop.exec();
Base::Console().Message("CmdSandboxEventLoop: timeout\n");
Base::Console().message("CmdSandboxEventLoop: timeout\n");
}
bool CmdSandboxEventLoop::isActive(void)
@@ -758,7 +758,7 @@ public:
kernel = myMesh->getKernel();
for (std::vector<Mesh::MeshObjectConstRef>::iterator it = meshes.begin(); it != meshes.end(); ++it) {
if (*it != myMesh) {
Base::Console().Message("MeshTestJob::run() in thread: %p\n", QThread::currentThreadId());
Base::Console().message("MeshTestJob::run() in thread: %p\n", QThread::currentThreadId());
}
}
@@ -822,7 +822,7 @@ void CmdSandboxMeshTestJob::activated(int)
}
// run the actual multi-threaded mesh test
Base::Console().Message("Mesh test (step %d)...\n",iteration++);
Base::Console().message("Mesh test (step %d)...\n",iteration++);
MeshTestJob meshJob;
QFuture<Mesh::MeshObject*> mesh_future = QtConcurrent::mapped
(mesh_groups, boost::bind(&MeshTestJob::run, &meshJob, bp::_1));
@@ -840,7 +840,7 @@ void CmdSandboxMeshTestJob::activated(int)
}
if (meshes.empty()) {
Base::Console().Error("The mesh test failed to create a valid mesh.\n");
Base::Console().error("The mesh test failed to create a valid mesh.\n");
return;
}
}
@@ -905,9 +905,9 @@ void CmdSandboxMeshTestRef::activated(int)
Mesh::MeshObject* ptr = (Mesh::MeshObject*)mesh;
if (!ptr)
Base::Console().Error("Object deleted\n");
Base::Console().error("Object deleted\n");
if (num != mesh.getRefCount())
Base::Console().Error("Reference count is %d\n",mesh.getRefCount());
Base::Console().error("Reference count is %d\n",mesh.getRefCount());
}
bool CmdSandboxMeshTestRef::isActive(void)