X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actioneditcopy.cpp;h=e174d428e0c025b43f2b165711f9ecafd0cae078;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=bbb70d6d9bf35e2886951d097a5a42f6f4ca7a22;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actioneditcopy.cpp b/src/actions/rs_actioneditcopy.cpp index bbb70d6..e174d42 100644 --- a/src/actions/rs_actioneditcopy.cpp +++ b/src/actions/rs_actioneditcopy.cpp @@ -22,7 +22,7 @@ * * @param undo true for undo and false for redo. */ -RS_ActionEditCopy::RS_ActionEditCopy(bool copy, RS_EntityContainer & container, RS_GraphicView & graphicView): +RS_ActionEditCopy::RS_ActionEditCopy(bool copy, RS_EntityContainer & container, GraphicView & graphicView): RS_ActionInterface("Edit Copy", container, graphicView) { this->copy = copy; @@ -59,12 +59,12 @@ void RS_ActionEditCopy::mouseMoveEvent(QMouseEvent * e) void RS_ActionEditCopy::mouseReleaseEvent(QMouseEvent * e) { - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { Vector ce(snapPoint(e)); coordinateEvent(&ce); } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deleteSnapper(); init(getStatus() - 1);