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

@@ -70,7 +70,7 @@ void TaskGeomHatch::initUi()
if (nameIndex > -1) {
ui->cbName->setCurrentIndex(nameIndex);
} else {
Base::Console().Warning("Warning - Pattern name *%s* not found in current PAT File\n", m_name.c_str());
Base::Console().warning("Warning - Pattern name *%s* not found in current PAT File\n", m_name.c_str());
}
connect(ui->cbName, qOverload<int>(&QComboBox::currentIndexChanged), this, &TaskGeomHatch::onNameChanged);
@@ -152,7 +152,7 @@ void TaskGeomHatch::onColorChanged()
bool TaskGeomHatch::accept()
{
// Base::Console().Message("TGH::accept()\n");
// Base::Console().message("TGH::accept()\n");
updateValues();
Gui::Command::doCommand(Gui::Command::Gui, "Gui.ActiveDocument.resetEdit()");
m_hatch->recomputeFeature(); //create the hatch lines
@@ -204,7 +204,7 @@ void TaskGeomHatch::getParameters()
//move values from screen to DocObjs
void TaskGeomHatch::updateValues()
{
// Base::Console().Message("TGH::updateValues()\n");
// Base::Console().message("TGH::updateValues()\n");
m_file = (ui->fcFile->fileName()).toUtf8().constData();
m_hatch->FilePattern.setValue(m_file);
QString cText = ui->cbName->currentText();