]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actioneditpaste.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actioneditpaste.cpp
index f4b7aa987d872c2be82b40df4eab1a79ee8ce518..40f3110b19831df128803df135a12eef97680ca9 100644 (file)
@@ -25,7 +25,7 @@
  *
  * @param undo true for undo and false for redo.
  */
-RS_ActionEditPaste::RS_ActionEditPaste(RS_EntityContainer & container, RS_GraphicView & graphicView): RS_PreviewActionInterface("Edit Paste",
+RS_ActionEditPaste::RS_ActionEditPaste(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Edit Paste",
                container, graphicView)
 {
 }
@@ -83,12 +83,12 @@ void RS_ActionEditPaste::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionEditPaste::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);