X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondrawarc3p.cpp;h=2450e76dbf7798829e4c3a79b92ac111b336569f;hb=f7188d32d0beaef31fc3475be05daea2f018ebec;hp=6f5d641851b53fbabb65499d4ecb9ec817a36836;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actiondrawarc3p.cpp b/src/actions/rs_actiondrawarc3p.cpp index 6f5d641..2450e76 100644 --- a/src/actions/rs_actiondrawarc3p.cpp +++ b/src/actions/rs_actiondrawarc3p.cpp @@ -15,12 +15,13 @@ #include "rs_actiondrawarc3p.h" #include "rs_actiondrawarc.h" +#include "rs_commandevent.h" #include "commands.h" #include "rs_dialogfactory.h" -#include "rs_graphicview.h" +#include "graphicview.h" #include "rs_preview.h" -RS_ActionDrawArc3P::RS_ActionDrawArc3P(RS_EntityContainer & container, RS_GraphicView & graphicView): +RS_ActionDrawArc3P::RS_ActionDrawArc3P(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Draw arcs 3P", container, graphicView) { reset(); @@ -138,12 +139,12 @@ void RS_ActionDrawArc3P::mouseMoveEvent(QMouseEvent * e) void RS_ActionDrawArc3P::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();