Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -118,7 +118,7 @@ void QGIDecoration::makeMark(Base::Vector3d v)
|
||||
|
||||
void QGIDecoration::mousePressEvent(QGraphicsSceneMouseEvent * event)
|
||||
{
|
||||
// Base::Console().Message("QGID::mousePressEvent() - %s\n", getViewName());
|
||||
// Base::Console().message("QGID::mousePressEvent() - %s\n", getViewName());
|
||||
m_dragState = DragState::DragStarted;
|
||||
|
||||
QGraphicsItem::mousePressEvent(event);
|
||||
@@ -134,7 +134,7 @@ void QGIDecoration::mouseMoveEvent(QGraphicsSceneMouseEvent * event)
|
||||
|
||||
void QGIDecoration::mouseReleaseEvent(QGraphicsSceneMouseEvent * event)
|
||||
{
|
||||
// Base::Console().Message("QGID::mouseReleaseEvent() - %s\n", getViewName());
|
||||
// Base::Console().message("QGID::mouseReleaseEvent() - %s\n", getViewName());
|
||||
if (m_dragState == DragState::Dragging) {
|
||||
onDragFinished();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user