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

@@ -553,7 +553,7 @@ QList<QAction*> ActionGroup::actions() const
int ActionGroup::checkedAction() const
{
auto checked = groupAction()->checkedAction();
return actions().indexOf(checked);
}
@@ -680,7 +680,7 @@ void WorkbenchGroup::refreshWorkbenchList()
QString tip = Application::Instance->workbenchToolTip(wbName);
QAction* action = getOrCreateAction(wbName);
groupAction()->addAction(action);
action->setText(name);
@@ -1083,7 +1083,7 @@ void RecentMacrosAction::setFiles(const QStringList& files)
" Recent Macros menu -> Keyboard Modifiers this should be Ctrl+Shift+"
" by default, if this is now blank then you should revert it back to"
" Ctrl+Shift+ by pressing both keys at the same time.");
Base::Console().Warning("%s\n", qPrintable(msgMain));
Base::Console().warning("%s\n", qPrintable(msgMain));
}
}