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

@@ -33,14 +33,14 @@ ZoomableView::ZoomableView(Ui::Sheet* ui)
, stv {ui->cells}
{
if (!stv) {
Base::Console().DeveloperWarning("ZoomableView", "Failed to find a SheetTableView object");
Base::Console().developerWarning("ZoomableView", "Failed to find a SheetTableView object");
deleteLater();
return;
}
else {
QLayoutItem* li_stv = stv->parentWidget()->layout()->replaceWidget(stv, this);
if (li_stv == nullptr) {
Base::Console().DeveloperWarning("ZoomableView",
Base::Console().developerWarning("ZoomableView",
"Failed to replace the SheetTableView object");
deleteLater();
return;
@@ -67,7 +67,7 @@ ZoomableView::ZoomableView(Ui::Sheet* ui)
dummySB_v {stv->verticalScrollBar()}, realSB_h {ui->realSB_h}, realSB_v {ui->realSB_v};
if (!dummySB_h || !dummySB_v || !realSB_h || !realSB_v) {
Base::Console().DeveloperWarning("ZoomableView", "Failed to identify the scrollbars");
Base::Console().developerWarning("ZoomableView", "Failed to identify the scrollbars");
deleteLater();
return;
}