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

@@ -788,14 +788,14 @@ void PropertyLink::Restore(Base::XMLReader& reader)
DocumentObject* object = document ? document->getObject(name.c_str()) : nullptr;
if (!object) {
if (reader.isVerbose()) {
Base::Console().Warning("Lost link to '%s' while loading, maybe "
Base::Console().warning("Lost link to '%s' while loading, maybe "
"an object was not loaded correctly\n",
name.c_str());
}
}
else if (parent == object) {
if (reader.isVerbose()) {
Base::Console().Warning("Object '%s' links to itself, nullify it\n", name.c_str());
Base::Console().warning("Object '%s' links to itself, nullify it\n", name.c_str());
}
object = nullptr;
}
@@ -2878,7 +2878,7 @@ void PropertyLinkSubList::Restore(Base::XMLReader& reader)
}
}
else if (reader.isVerbose()) {
Base::Console().Warning("Lost link to '%s' while loading, maybe "
Base::Console().warning("Lost link to '%s' while loading, maybe "
"an object was not loaded correctly\n",
name.c_str());
}