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

@@ -62,7 +62,7 @@ void QGVNavStyleCAD::handleKeyReleaseEvent(QKeyEvent *event)
void QGVNavStyleCAD::handleMousePressEvent(QMouseEvent *event)
{
// Base::Console().Message("QGVNSCAD::handleMousePressEvent() - button: %d\n", event->button());
// Base::Console().message("QGVNSCAD::handleMousePressEvent() - button: %d\n", event->button());
if (event->button() == Qt::MiddleButton) {
startClick(Qt::MiddleButton); //for MMB center view
}
@@ -131,7 +131,7 @@ void QGVNavStyleCAD::handleMouseMoveEvent(QMouseEvent *event)
void QGVNavStyleCAD::handleMouseReleaseEvent(QMouseEvent *event)
{
// Base::Console().Message("QGVNSCAD::handleMouseReleaseEvent() - button: %d\n", event->button());
// Base::Console().message("QGVNSCAD::handleMouseReleaseEvent() - button: %d\n", event->button());
if (getViewer()->isBalloonPlacing()) {
placeBalloon(event->pos());
}
@@ -174,7 +174,7 @@ void QGVNavStyleCAD::handleMouseReleaseEvent(QMouseEvent *event)
bool QGVNavStyleCAD::allowContextMenu(QContextMenuEvent *event)
{
// Base::Console().Message("QGVNSCAD::allowContextMenu()\n");
// Base::Console().message("QGVNSCAD::allowContextMenu()\n");
if (event->reason() == QContextMenuEvent::Mouse) {
//must check for a button combination involving context menu button
if (QGuiApplication::keyboardModifiers().testFlag(Qt::ControlModifier) ||