diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 12:22:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 15:26:06 +0100 |
commit | 9ebedb7eedfeb7e622038f3c1ca35c439adcf3ae (patch) | |
tree | b75be4892e36d6f1bd534a2dee067e3e51013953 /svx/source/svdraw/svddrgmt.cxx | |
parent | 2742d8421b18f2d00bcc5147b79202973f3c11fb (diff) |
coverity#704340 Logically dead code
Change-Id: I785b3faa2a9e3a540c3d09a37686f9ef26643094
Diffstat (limited to 'svx/source/svdraw/svddrgmt.cxx')
-rw-r--r-- | svx/source/svdraw/svddrgmt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svddrgmt.cxx b/svx/source/svdraw/svddrgmt.cxx index 34be0e161b12..6b040917be9e 100644 --- a/svx/source/svdraw/svddrgmt.cxx +++ b/svx/source/svdraw/svddrgmt.cxx @@ -1741,7 +1741,7 @@ bool SdrDragMove::EndSdrDrag(bool bCopy) if (IsDraggingPoints()) { - getSdrDragView().MoveMarkedPoints(Size(DragStat().GetDX(),DragStat().GetDY()),bCopy); + getSdrDragView().MoveMarkedPoints(Size(DragStat().GetDX(),DragStat().GetDY())); } else if (IsDraggingGluePoints()) { @@ -2078,7 +2078,7 @@ bool SdrDragResize::EndSdrDrag(bool bCopy) if (IsDraggingPoints()) { - getSdrDragView().ResizeMarkedPoints(DragStat().Ref1(),aXFact,aYFact,bCopy); + getSdrDragView().ResizeMarkedPoints(DragStat().Ref1(),aXFact,aYFact); } else if (IsDraggingGluePoints()) { @@ -2222,7 +2222,7 @@ bool SdrDragRotate::EndSdrDrag(bool bCopy) { if (IsDraggingPoints()) { - getSdrDragView().RotateMarkedPoints(DragStat().GetRef1(),nWink,bCopy); + getSdrDragView().RotateMarkedPoints(DragStat().GetRef1(),nWink); } else if (IsDraggingGluePoints()) { |