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

@@ -64,7 +64,7 @@ void PATPathMaker::lineSetToFillItems(LineSet& ls)
m_fillItems.push_back(fillItem);
if (m_segCount > m_maxSeg) {
Base::Console().Warning("PAT segment count exceeded: %ld\n", m_segCount);
Base::Console().warning("PAT segment count exceeded: %ld\n", m_segCount);
break;
}
}
@@ -155,7 +155,7 @@ QPainterPath PATPathMaker::dashedPPath(const std::vector<double> dashPattern, co
while (travel < lineLength) {
bool stop = false;
if (m_segCount > 10000) {
Base::Console().Warning("PAT segment count exceeded: %ld\n", m_segCount);
Base::Console().warning("PAT segment count exceeded: %ld\n", m_segCount);
break;
}