X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifytrimamount.cpp;h=94a3ad8aca6d3f8869b8d64828f9d4cd3b7939c0;hb=f7188d32d0beaef31fc3475be05daea2f018ebec;hp=65666c82c203f99af5ff0395ef42a0602e69920b;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifytrimamount.cpp b/src/actions/rs_actionmodifytrimamount.cpp index 65666c8..94a3ad8 100644 --- a/src/actions/rs_actionmodifytrimamount.cpp +++ b/src/actions/rs_actionmodifytrimamount.cpp @@ -14,11 +14,12 @@ #include "rs_actionmodifytrimamount.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" #include "rs_modification.h" RS_ActionModifyTrimAmount::RS_ActionModifyTrimAmount( - RS_EntityContainer & container, RS_GraphicView & graphicView): + RS_EntityContainer & container, GraphicView & graphicView): RS_ActionInterface("Trim Entity by a given amount", container, graphicView) { @@ -65,7 +66,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e) trimCoord = graphicView->toGraph(e->x(), e->y()); trimEntity = catchEntity(e); - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { switch (getStatus()) { @@ -93,7 +94,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e) break; } } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deleteSnapper(); init(getStatus() - 1);