Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -54,12 +54,12 @@ void QGVNavStyleBlender::handleKeyReleaseEvent(QKeyEvent *event)
|
||||
void QGVNavStyleBlender::handleMousePressEvent(QMouseEvent *event)
|
||||
{
|
||||
Q_UNUSED(event)
|
||||
// Base::Console().Message("QGVNSBlender::handleMousePressEvent() - button: %d buttons: %d\n", event->button(), event->buttons());
|
||||
// Base::Console().message("QGVNSBlender::handleMousePressEvent() - button: %d buttons: %d\n", event->button(), event->buttons());
|
||||
}
|
||||
|
||||
void QGVNavStyleBlender::handleMouseMoveEvent(QMouseEvent *event)
|
||||
{
|
||||
// Base::Console().Message("QGVNSBlender::handleMouseMoveEvent() - buttons: %d modifiers: %X\n",
|
||||
// Base::Console().message("QGVNSBlender::handleMouseMoveEvent() - buttons: %d modifiers: %X\n",
|
||||
// QGuiApplication::mouseButtons() & Qt::MiddleButton,
|
||||
// QGuiApplication::keyboardModifiers().testFlag(Qt::ShiftModifier));
|
||||
|
||||
@@ -91,7 +91,7 @@ void QGVNavStyleBlender::handleMouseMoveEvent(QMouseEvent *event)
|
||||
|
||||
void QGVNavStyleBlender::handleMouseReleaseEvent(QMouseEvent *event)
|
||||
{
|
||||
// Base::Console().Message("QGVNSBlender::handleMouseReleaseEvent() - button: %d buttons: %d\n", event->button(), event->buttons());
|
||||
// Base::Console().message("QGVNSBlender::handleMouseReleaseEvent() - button: %d buttons: %d\n", event->button(), event->buttons());
|
||||
if (getViewer()->isBalloonPlacing()) {
|
||||
placeBalloon(event->pos());
|
||||
}
|
||||
@@ -115,7 +115,7 @@ void QGVNavStyleBlender::handleMouseReleaseEvent(QMouseEvent *event)
|
||||
|
||||
bool QGVNavStyleBlender::allowContextMenu(QContextMenuEvent *event)
|
||||
{
|
||||
// Base::Console().Message("QGVNSBlender::allowContextMenu()\n");
|
||||
// Base::Console().message("QGVNSBlender::allowContextMenu()\n");
|
||||
if (event->reason() == QContextMenuEvent::Mouse) {
|
||||
//must check for a button combination involving context menu button
|
||||
if (QGuiApplication::mouseButtons() & Qt::LeftButton) {
|
||||
|
||||
Reference in New Issue
Block a user