]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifymove.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actionmodifymove.cpp
index c5f43c9472df28c642af2aa2cb12c0e6590e8261..5a966f7a3d6d903a0844369ad0c862faa7d8c82b 100644 (file)
@@ -18,7 +18,7 @@
 #include "rs_preview.h"
 
 RS_ActionModifyMove::RS_ActionModifyMove(RS_EntityContainer & container,
-       RS_GraphicView & graphicView):
+       GraphicView & graphicView):
        RS_PreviewActionInterface("Move Entities", container, graphicView)
 {
 }
@@ -81,12 +81,12 @@ void RS_ActionModifyMove::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionModifyMove::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)
        {
                deletePreview();
                deleteSnapper();