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 d4ecf95ca5
commit 998f4e4d45
497 changed files with 2423 additions and 2425 deletions

View File

@@ -186,7 +186,7 @@ void ButtonModel::load3DConnexionButtons(const char *RequiredDeviceName)
catch (const std::exception& e)
{
// We don't mind not finding the file to be opened
Base::Console().Warning("%s\n", e.what());
Base::Console().warning("%s\n", e.what());
}
}
@@ -201,7 +201,7 @@ QVariant ButtonModel::data (const QModelIndex &index, int role) const
GroupVector groupVector = spaceballButtonGroup()->GetGroups();
if (index.row() >= (int)groupVector.size())
{
Base::Console().Log("index error in ButtonModel::data\n");
Base::Console().log("index error in ButtonModel::data\n");
return {};
}
if (role == Qt::DisplayRole)
@@ -913,7 +913,7 @@ QStringList DlgCustomizeSpaceball::getModels()
catch (const std::exception& e)
{
// We don't mind not finding the file to be opened
Base::Console().Warning("%s\n", e.what());
Base::Console().warning("%s\n", e.what());
}
return modelList;