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

@@ -135,7 +135,7 @@ void SnapManager::ParameterObserver::subscribeToParameters()
}
catch (const Base::ValueError& e) { // ensure that if parameter strings are not well-formed,
// the exception is not propagated
Base::Console().DeveloperError("SnapManager", "Malformed parameter string: %s\n", e.what());
Base::Console().developerError("SnapManager", "Malformed parameter string: %s\n", e.what());
}
}
@@ -148,7 +148,7 @@ void SnapManager::ParameterObserver::unsubscribeToParameters()
catch (const Base::ValueError&
e) { // ensure that if parameter strings are not well-formed, the program is not
// terminated when calling the noexcept destructor.
Base::Console().DeveloperError("SnapManager", "Malformed parameter string: %s\n", e.what());
Base::Console().developerError("SnapManager", "Malformed parameter string: %s\n", e.what());
}
}