X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifymoverotate.cpp;h=706c9d2b82e2cc9bb199b81bba30ec54b5669255;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=a241d799863cee6a4d2264bba3777f058c04b83b;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifymoverotate.cpp b/src/actions/rs_actionmodifymoverotate.cpp index a241d79..706c9d2 100644 --- a/src/actions/rs_actionmodifymoverotate.cpp +++ b/src/actions/rs_actionmodifymoverotate.cpp @@ -14,11 +14,12 @@ #include "rs_actionmodifymoverotate.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" #include "rs_preview.h" RS_ActionModifyMoveRotate::RS_ActionModifyMoveRotate( - RS_EntityContainer & container, RS_GraphicView & graphicView): + RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Move and Rotate Entities", container, graphicView) { } @@ -89,12 +90,12 @@ void RS_ActionModifyMoveRotate::mouseMoveEvent(QMouseEvent * e) void RS_ActionModifyMoveRotate::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();