]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifystretch.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actionmodifystretch.cpp
index f71e10778c43519bfccb9ef557dd3224ef661173..df7c9ae3a3665b645f3b34dbb00cd2a6285380ac 100644 (file)
@@ -19,7 +19,7 @@
 #include "rs_preview.h"
 
 RS_ActionModifyStretch::RS_ActionModifyStretch(RS_EntityContainer & container,
-       RS_GraphicView & graphicView): RS_PreviewActionInterface("Stretch Entities",
+       GraphicView & graphicView): RS_PreviewActionInterface("Stretch Entities",
                container, graphicView)
 {
        firstCorner = Vector(false);
@@ -130,12 +130,12 @@ void RS_ActionModifyStretch::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionModifyStretch::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();