X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifyrotate2.cpp;h=0bdabab68526acfb4cb1cfc442b73e04bafbecbc;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=b62704542d82c6174d3c61f2827bfcd8e8012df5;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifyrotate2.cpp b/src/actions/rs_actionmodifyrotate2.cpp index b627045..0bdabab 100644 --- a/src/actions/rs_actionmodifyrotate2.cpp +++ b/src/actions/rs_actionmodifyrotate2.cpp @@ -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();