]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifybevel.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actionmodifybevel.cpp
index 34fce8dea8935b3ef973ef80c0d8ef7d874d1281..1949c8107b8ebd3943d50247208ed29613ac5a8c 100644 (file)
 
 #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();