Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -58,7 +58,7 @@ QGIGhostHighlight::~QGIGhostHighlight()
|
||||
|
||||
void QGIGhostHighlight::mousePressEvent(QGraphicsSceneMouseEvent * event)
|
||||
{
|
||||
// Base::Console().Message("QGIGhostHighlight::mousePress() - %X\n", this);
|
||||
// Base::Console().message("QGIGhostHighlight::mousePress() - %X\n", this);
|
||||
if ( (event->button() == Qt::LeftButton) &&
|
||||
(flags() & QGraphicsItem::ItemIsMovable) ) {
|
||||
m_dragging = true;
|
||||
@@ -69,7 +69,7 @@ void QGIGhostHighlight::mousePressEvent(QGraphicsSceneMouseEvent * event)
|
||||
|
||||
void QGIGhostHighlight::mouseReleaseEvent(QGraphicsSceneMouseEvent * event)
|
||||
{
|
||||
// Base::Console().Message("QGIGhostHighlight::mouseRelease() - pos: %s scenePos: %s\n",
|
||||
// Base::Console().message("QGIGhostHighlight::mouseRelease() - pos: %s scenePos: %s\n",
|
||||
// DrawUtil::formatVector(pos()).c_str(),
|
||||
// DrawUtil::formatVector(mapToScene(pos())).c_str());
|
||||
if (m_dragging) {
|
||||
|
||||
Reference in New Issue
Block a user