]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifyrotate.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actionmodifyrotate.cpp
index 77c102bf1a44d2f80fe4aecbed8052e553325441..41efd58bf6f7e75a8e6a410cade968a7e52737d6 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "rs_dialogfactory.h"
 
-RS_ActionModifyRotate::RS_ActionModifyRotate(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionModifyRotate::RS_ActionModifyRotate(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Rotate Entities",
                container, graphicView)
 {
@@ -65,12 +65,12 @@ void RS_ActionModifyRotate::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionModifyRotate::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();