]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actioneditcopy.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actioneditcopy.cpp
index bbb70d6d9bf35e2886951d097a5a42f6f4ca7a22..e174d428e0c025b43f2b165711f9ecafd0cae078 100644 (file)
@@ -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);