]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifyrotate2.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actionmodifyrotate2.cpp
index b62704542d82c6174d3c61f2827bfcd8e8012df5..0bdabab68526acfb4cb1cfc442b73e04bafbecbc 100644 (file)
@@ -17,7 +17,7 @@
 #include "rs_dialogfactory.h"
 
 RS_ActionModifyRotate2::RS_ActionModifyRotate2(
-       RS_EntityContainer & container, RS_GraphicView & graphicView):
+       RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Rotate Entities around two centers", container, graphicView)
 {
 }
@@ -83,12 +83,12 @@ void RS_ActionModifyRotate2::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionModifyRotate2::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();