[Libreoffice-commits] core.git: Branch 'feature/OperationSmiley' - include/svx svx/source
Armin Le Grand (CIB)
Armin.Le.Grand at cib.de
Fri Mar 16 15:18:01 UTC 2018
include/svx/svdopath.hxx | 2 +-
svx/source/svdraw/svdopath.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit a27e59fac897937f914976a5a563a1c572ccbe44
Author: Armin Le Grand <Armin.Le.Grand at cib.de (CIB)>
Date: Fri Mar 16 16:16:54 2018 +0100
OperationSmiley: Removed unused param from SdrPathObj constructor
Change-Id: Ia69e822c698ea13650d868472ba63744727ff886
diff --git a/include/svx/svdopath.hxx b/include/svx/svdopath.hxx
index fac63b375fb8..e32ccf5116df 100644
--- a/include/svx/svdopath.hxx
+++ b/include/svx/svdopath.hxx
@@ -63,7 +63,7 @@ private:
public:
SdrPathObj(SdrObjKind eNewKind);
- SdrPathObj(SdrObjKind eNewKind, const basegfx::B2DPolyPolygon& rPathPoly, double dBrightness = 0.0);
+ SdrPathObj(SdrObjKind eNewKind, const basegfx::B2DPolyPolygon& rPathPoly);
virtual ~SdrPathObj() override;
virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const override;
diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx
index 2935164da771..5cf8dd58c115 100644
--- a/svx/source/svdraw/svdopath.cxx
+++ b/svx/source/svdraw/svdopath.cxx
@@ -1634,7 +1634,7 @@ SdrPathObj::SdrPathObj(SdrObjKind eNewKind)
bClosedObj = IsClosed();
}
-SdrPathObj::SdrPathObj(SdrObjKind eNewKind, const basegfx::B2DPolyPolygon& rPathPoly, double dBrightness)
+SdrPathObj::SdrPathObj(SdrObjKind eNewKind, const basegfx::B2DPolyPolygon& rPathPoly)
: maPathPolygon(rPathPoly),
meKind(eNewKind)
{
More information about the Libreoffice-commits
mailing list