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

@@ -380,13 +380,13 @@ void PropertyEditor::recomputeDocument(App::Document* doc)
e.reportException();
}
catch (const std::exception& e) {
Base::Console().Error(
Base::Console().error(
"Unhandled std::exception caught in PropertyEditor::recomputeDocument.\n"
"The error message is: %s\n",
e.what());
}
catch (...) {
Base::Console().Error(
Base::Console().error(
"Unhandled unknown exception caught in PropertyEditor::recomputeDocument.\n");
}
}
@@ -612,7 +612,7 @@ void PropertyEditor::buildUp(PropertyModel::PropertyList&& props, bool _checkDoc
checkDocument = _checkDocument;
if (committing) {
Base::Console().Warning(
Base::Console().warning(
"While committing the data to the property the selection has changed.\n");
delaybuild = true;
return;