]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actioninfodist.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actioninfodist.cpp
index 2c3a6ad07fde133705850742ff8f9889d1c8e078..af59d52643b37869107c1abc77db714ad7becf0d 100644 (file)
 #include "rs_actioninfodist.h"
 
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionInfoDist::RS_ActionInfoDist(RS_EntityContainer & container, RS_GraphicView & graphicView): RS_PreviewActionInterface("Info Dist",
+RS_ActionInfoDist::RS_ActionInfoDist(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Info Dist",
                container, graphicView)
 {
 }
@@ -86,12 +86,12 @@ void RS_ActionInfoDist::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionInfoDist::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();