https://issues.apache.org/ooo/show_bug.cgi?id=120180
Priority: P3
Bug ID: 120180
Assignee: [email protected]
Summary: WaE: svx
Severity: normal
Issue Type: DEFECT
Classification: Code
OS: All
Reporter: [email protected]
Hardware: All
Status: CONFIRMED
Version: AOO 3.4.0
Component: code
Product: framework
Current trunk, waE unused arguments.
Proposed patch (self explanatory):
diff -ur svx.orig/source/svdraw/svddrgmt.cxx svx/source/svdraw/svddrgmt.cxx
--- svx.orig/source/svdraw/svddrgmt.cxx 2012-07-03 13:28:18.000000000 +0200
+++ svx/source/svdraw/svddrgmt.cxx 2012-07-03 13:28:51.000000000 +0200
@@ -184,7 +184,7 @@
}
}
-drawinglayer::primitive2d::Primitive2DSequence
SdrDragEntrySdrObject::createPrimitive2DSequenceInCurrentState(SdrDragMethod&
rDragMethod)
+drawinglayer::primitive2d::Primitive2DSequence
SdrDragEntrySdrObject::createPrimitive2DSequenceInCurrentState(SdrDragMethod&
/* rDragMethod */)
{
const SdrObject* pSource = &maOriginal;
diff -ur svx.orig/source/svdraw/svdoedge.cxx svx/source/svdraw/svdoedge.cxx
--- svx.orig/source/svdraw/svdoedge.cxx 2012-07-03 13:28:18.000000000 +0200
+++ svx/source/svdraw/svdoedge.cxx 2012-07-03 13:31:50.000000000 +0200
@@ -2261,7 +2261,7 @@
}
// #54102# added rotation support
-void SdrEdgeObj::NbcRotate(const Point& rRef, long nWink, double sn, double
cs)
+void SdrEdgeObj::NbcRotate(const Point& rRef, long /* nWink */, double sn,
double cs)
{
// handle start and end point if not connected
FASTBOOL bCon1=aCon1.pObj!=NULL && aCon1.pObj->GetPage()==pPage;
@@ -2303,7 +2303,7 @@
}
// #54102# added shear support
-void SdrEdgeObj::NbcShear(const Point& rRef, long nWink, double tn, FASTBOOL
bVShear)
+void SdrEdgeObj::NbcShear(const Point& rRef, long /* nWink */, double tn,
FASTBOOL bVShear)
{
// handle start and end point if not connected
FASTBOOL bCon1=aCon1.pObj!=NULL && aCon1.pObj->GetPage()==pPage;
--
You are receiving this mail because:
You are the assignee for the bug.