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

@@ -56,13 +56,13 @@ void LineEdit::setDocumentObject(const App::DocumentObject* currentDocObj, bool
QPointer<Gui::MDIView> active_view = Gui::MainWindow::getInstance()->activeWindow();
if (!active_view) {
Base::Console().DeveloperWarning("LineEdit::setDocumentObject",
Base::Console().developerWarning("LineEdit::setDocumentObject",
"The active view is not Spreadsheet");
return;
}
QPointer<ZoomableView> zv = active_view->findChild<ZoomableView*>();
if (!zv) {
Base::Console().DeveloperWarning("LineEdit::setDocumentObject", "ZoomableView not found");
Base::Console().developerWarning("LineEdit::setDocumentObject", "ZoomableView not found");
return;
}