X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifybevel.cpp;h=1949c8107b8ebd3943d50247208ed29613ac5a8c;hb=f7188d32d0beaef31fc3475be05daea2f018ebec;hp=34fce8dea8935b3ef973ef80c0d8ef7d874d1281;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifybevel.cpp b/src/actions/rs_actionmodifybevel.cpp index 34fce8d..1949c81 100644 --- a/src/actions/rs_actionmodifybevel.cpp +++ b/src/actions/rs_actionmodifybevel.cpp @@ -14,10 +14,11 @@ #include "rs_actionmodifybevel.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" #include "rs_information.h" -RS_ActionModifyBevel::RS_ActionModifyBevel(RS_EntityContainer & container, RS_GraphicView & graphicView): RS_PreviewActionInterface("Bevel Entities", +RS_ActionModifyBevel::RS_ActionModifyBevel(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Bevel Entities", container, graphicView) { entity1 = NULL; @@ -95,7 +96,7 @@ void RS_ActionModifyBevel::mouseMoveEvent(QMouseEvent * e) void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent * e) { - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { switch (getStatus()) { @@ -116,7 +117,7 @@ void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent * e) break; } } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deletePreview(); deleteSnapper();