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

@@ -277,7 +277,7 @@ void Translator::setLocale(const std::string& language) const
updateLocaleChange();
#ifdef FC_DEBUG
Base::Console().Log("Locale changed to %s => %s\n", qPrintable(loc.bcp47Name()), qPrintable(loc.name()));
Base::Console().log("Locale changed to %s => %s\n", qPrintable(loc.bcp47Name()), qPrintable(loc.name()));
#endif
}
@@ -409,7 +409,7 @@ void Translator::enableDecimalPointConversion(bool on)
}
#if FC_DEBUG
if (on && decimalPointConverter) {
Base::Console().Instance().Warning("Translator: decimal point converter is already installed\n");
Base::Console().instance().warning("Translator: decimal point converter is already installed\n");
}
#endif
if (on && !decimalPointConverter) {