[Libreoffice-commits] core.git: avmedia/source basegfx/source basic/source include/basegfx

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 27 19:24:54 UTC 2021


 avmedia/source/framework/mediacontrol.cxx    |    1 -
 avmedia/source/gstreamer/gstframegrabber.cxx |    3 +--
 basegfx/source/color/bcolormodifier.cxx      |    6 ++----
 basegfx/source/curve/b2dbeziertools.cxx      |    3 +--
 basegfx/source/matrix/b2dhommatrix.cxx       |    1 -
 basegfx/source/polygon/b2dpolygon.cxx        |   13 +------------
 basegfx/source/polygon/b2dpolypolygon.cxx    |    8 ++------
 basegfx/source/polygon/b2dtrapezoid.cxx      |    3 ---
 basegfx/source/polygon/b3dpolygon.cxx        |   10 +++-------
 basegfx/source/polygon/b3dpolypolygon.cxx    |    2 +-
 basegfx/source/range/b2dpolyrange.cxx        |    5 +----
 basegfx/source/range/b2drange.cxx            |    4 +---
 basegfx/source/range/b2drangeclipper.cxx     |    1 -
 basegfx/source/raster/rasterconvert3d.cxx    |    2 --
 basegfx/source/tools/b2dclipstate.cxx        |    5 -----
 basegfx/source/tools/systemdependentdata.cxx |    1 -
 basic/source/classes/sbunoobj.cxx            |    3 +--
 basic/source/sbx/sbxarray.cxx                |    2 +-
 basic/source/sbx/sbxvalue.cxx                |    4 ++--
 basic/source/sbx/sbxvar.cxx                  |    4 ++--
 include/basegfx/color/bcolor.hxx             |    1 -
 include/basegfx/color/bcolormodifier.hxx     |   12 +++---------
 include/basegfx/matrix/b2dhommatrixtools.hxx |    6 +-----
 include/basegfx/point/b2dpoint.hxx           |    1 -
 include/basegfx/point/b2ipoint.hxx           |    1 -
 include/basegfx/point/b3dpoint.hxx           |    1 -
 include/basegfx/range/b2dconnectedranges.hxx |    3 +--
 include/basegfx/raster/rasterconvert3d.hxx   |    5 -----
 include/basegfx/utils/gradienttools.hxx      |    5 +----
 include/basegfx/vector/b2dvector.hxx         |    1 -
 include/basegfx/vector/b2ivector.hxx         |    1 -
 include/basegfx/vector/b3dvector.hxx         |    1 -
 32 files changed, 25 insertions(+), 94 deletions(-)

New commits:
commit 8024118d5c9ac964e35e8c4163ca14a5cd78cc3d
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri Aug 27 15:26:05 2021 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri Aug 27 21:24:20 2021 +0200

    clang-tidy:readability-redundant-member-init
    
    Change-Id: Ibeff6e5cbc20ab86b1e9cb96292acb340849ede3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121149
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/avmedia/source/framework/mediacontrol.cxx b/avmedia/source/framework/mediacontrol.cxx
index 035430ab9089..55286145bb39 100644
--- a/avmedia/source/framework/mediacontrol.cxx
+++ b/avmedia/source/framework/mediacontrol.cxx
@@ -35,7 +35,6 @@ MediaControl::MediaControl( vcl::Window* pParent, MediaControlStyle eControlStyl
                                    OUString("svx/ui/mediawindow.ui") :
                                    OUString("svx/ui/medialine.ui"),
                                "MediaWindow"),
-    MediaControlBase(),
     maIdle( "avmedia MediaControl Idle" ),
     maChangeTimeIdle( "avmedia MediaControl Change Time Idle" ),
     maItem( 0, AVMediaSetMask::ALL ),
diff --git a/avmedia/source/gstreamer/gstframegrabber.cxx b/avmedia/source/gstreamer/gstframegrabber.cxx
index 15dbc6279357..ece799d87530 100644
--- a/avmedia/source/gstreamer/gstframegrabber.cxx
+++ b/avmedia/source/gstreamer/gstframegrabber.cxx
@@ -48,8 +48,7 @@ void FrameGrabber::disposePipeline()
     }
 }
 
-FrameGrabber::FrameGrabber( std::u16string_view rURL ) :
-    FrameGrabber_BASE()
+FrameGrabber::FrameGrabber( std::u16string_view rURL )
 {
     gchar *pPipelineStr;
     pPipelineStr = g_strdup_printf(
diff --git a/basegfx/source/color/bcolormodifier.cxx b/basegfx/source/color/bcolormodifier.cxx
index 1002e607f6d2..8620a94fe2c7 100644
--- a/basegfx/source/color/bcolormodifier.cxx
+++ b/basegfx/source/color/bcolormodifier.cxx
@@ -148,8 +148,7 @@ namespace basegfx
     }
 
     BColorModifier_gamma::BColorModifier_gamma(double fValue)
-    :   BColorModifier(),
-        mfValue(fValue),
+    :   mfValue(fValue),
         mfInvValue(fValue),
         mbUseIt(!basegfx::fTools::equal(fValue, 1.0) && basegfx::fTools::more(fValue, 0.0) && basegfx::fTools::lessOrEqual(fValue, 10.0))
     {
@@ -195,8 +194,7 @@ namespace basegfx
     }
 
     BColorModifier_RGBLuminanceContrast::BColorModifier_RGBLuminanceContrast(double fRed, double fGreen, double fBlue, double fLuminance, double fContrast)
-    :   BColorModifier(),
-        mfRed(std::clamp(fRed, -1.0, 1.0)),
+    :   mfRed(std::clamp(fRed, -1.0, 1.0)),
         mfGreen(std::clamp(fGreen, -1.0, 1.0)),
         mfBlue(std::clamp(fBlue, -1.0, 1.0)),
         mfLuminance(std::clamp(fLuminance, -1.0, 1.0)),
diff --git a/basegfx/source/curve/b2dbeziertools.cxx b/basegfx/source/curve/b2dbeziertools.cxx
index c24ba4215a2e..8fd4c4b84c74 100644
--- a/basegfx/source/curve/b2dbeziertools.cxx
+++ b/basegfx/source/curve/b2dbeziertools.cxx
@@ -24,8 +24,7 @@
 namespace basegfx
 {
     B2DCubicBezierHelper::B2DCubicBezierHelper(const B2DCubicBezier& rBase, sal_uInt32 nDivisions)
-    :   maLengthArray(),
-        mnEdgeCount(0)
+    :   mnEdgeCount(0)
     {
         const bool bIsBezier(rBase.isBezier());
 
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx
index badda594c9de..f3d2622db27a 100644
--- a/basegfx/source/matrix/b2dhommatrix.cxx
+++ b/basegfx/source/matrix/b2dhommatrix.cxx
@@ -42,7 +42,6 @@ namespace basegfx
     B2DHomMatrix::~B2DHomMatrix() = default;
 
     B2DHomMatrix::B2DHomMatrix(double f_0x0, double f_0x1, double f_0x2, double f_1x0, double f_1x1, double f_1x2)
-        :   mpImpl() // identity
     {
         mpImpl->set(0, 0, f_0x0);
         mpImpl->set(0, 1, f_0x1);
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 141982aef10b..2baa16225227 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -250,8 +250,7 @@ public:
     {}
 
     ControlVectorArray2D(const ControlVectorArray2D& rOriginal, sal_uInt32 nIndex, sal_uInt32 nCount)
-    :   maVector(),
-        mnUsedVectors(0)
+    :   mnUsedVectors(0)
     {
         ControlVectorPair2DVector::const_iterator aStart(rOriginal.maVector.begin());
         aStart += nIndex;
@@ -468,9 +467,6 @@ private:
 
 public:
     ImplBufferedData()
-    :   basegfx::SystemDependentDataHolder(),
-        mpDefaultSubdivision(),
-        mpB2DRange()
     {
     }
 
@@ -600,15 +596,11 @@ public:
 
     ImplB2DPolygon()
     :   maPoints(0),
-        mpControlVector(),
-        mpBufferedData(),
         mbIsClosed(false)
     {}
 
     ImplB2DPolygon(const ImplB2DPolygon& rToBeCopied)
     :   maPoints(rToBeCopied.maPoints),
-        mpControlVector(),
-        mpBufferedData(),
         mbIsClosed(rToBeCopied.mbIsClosed)
     {
         // complete initialization using copy
@@ -620,8 +612,6 @@ public:
 
     ImplB2DPolygon(const ImplB2DPolygon& rToBeCopied, sal_uInt32 nIndex, sal_uInt32 nCount)
     :   maPoints(rToBeCopied.maPoints, nIndex, nCount),
-        mpControlVector(),
-        mpBufferedData(),
         mbIsClosed(rToBeCopied.mbIsClosed)
     {
         // complete initialization using partly copy
@@ -1130,7 +1120,6 @@ namespace basegfx
     B2DPolygon::B2DPolygon() = default;
 
     B2DPolygon::B2DPolygon(std::initializer_list<basegfx::B2DPoint> aPoints)
-        : mpPolygon()
     {
         for (const basegfx::B2DPoint& rPoint : aPoints)
         {
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index 36c221eeb106..78b3b7085303 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -30,20 +30,16 @@ class ImplB2DPolyPolygon
 
 public:
     ImplB2DPolyPolygon()
-    :   maPolygons(),
-        mpSystemDependentDataHolder()
     {
     }
 
     explicit ImplB2DPolyPolygon(const ImplB2DPolyPolygon& rSource)
-    :   maPolygons(rSource.maPolygons),
-        mpSystemDependentDataHolder()
+    :   maPolygons(rSource.maPolygons)
     {
     }
 
     explicit ImplB2DPolyPolygon(const basegfx::B2DPolygon& rToBeCopied)
-    :   maPolygons(1,rToBeCopied),
-        mpSystemDependentDataHolder()
+    :   maPolygons(1,rToBeCopied)
     {
     }
 
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx
index 3a255c18a7a3..12dbd66fdf9e 100644
--- a/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -482,9 +482,6 @@ namespace basegfx::trapezoidhelper
         public:
             explicit TrapezoidSubdivider(
                 const B2DPolyPolygon& rSourcePolyPolygon)
-            :   maTrDeEdgeEntries(),
-                maPoints(),
-                maNewPoints()
             {
                 B2DPolyPolygon aSource(rSourcePolyPolygon);
                 TrDeSimpleEdges aTrDeSimpleEdges;
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx
index 89c9c279eb75..364f9f8c0e1d 100644
--- a/basegfx/source/polygon/b3dpolygon.cxx
+++ b/basegfx/source/polygon/b3dpolygon.cxx
@@ -37,7 +37,6 @@ class CoordinateData3D
 
 public:
     CoordinateData3D()
-    :   maPoint()
     {
     }
 
@@ -251,8 +250,7 @@ public:
     }
 
     BColorArray(const BColorArray& rOriginal, sal_uInt32 nIndex, sal_uInt32 nCount)
-    :   maVector(),
-        mnUsedEntries(0)
+    :   mnUsedEntries(0)
     {
         BColorDataVector::const_iterator aStart(rOriginal.maVector.begin());
         aStart += nIndex;
@@ -393,8 +391,7 @@ public:
     }
 
     NormalsArray3D(const NormalsArray3D& rOriginal, sal_uInt32 nIndex, sal_uInt32 nCount)
-    :   maVector(),
-        mnUsedEntries(0)
+    :   mnUsedEntries(0)
     {
         NormalsData3DVector::const_iterator aStart(rOriginal.maVector.begin());
         aStart += nIndex;
@@ -542,8 +539,7 @@ public:
     }
 
     TextureCoordinate2D(const TextureCoordinate2D& rOriginal, sal_uInt32 nIndex, sal_uInt32 nCount)
-    :   maVector(),
-        mnUsedEntries(0)
+    :   mnUsedEntries(0)
     {
         TextureData2DVector::const_iterator aStart(rOriginal.maVector.begin());
         aStart += nIndex;
diff --git a/basegfx/source/polygon/b3dpolypolygon.cxx b/basegfx/source/polygon/b3dpolypolygon.cxx
index e391fc783848..97ed39c87718 100644
--- a/basegfx/source/polygon/b3dpolypolygon.cxx
+++ b/basegfx/source/polygon/b3dpolypolygon.cxx
@@ -31,7 +31,7 @@ class ImplB3DPolyPolygon
     PolygonVector                                   maPolygons;
 
 public:
-    ImplB3DPolyPolygon() : maPolygons()
+    ImplB3DPolyPolygon()
     {
     }
 
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx
index d7d0d61de061..beb506fc8e4d 100644
--- a/basegfx/source/range/b2dpolyrange.cxx
+++ b/basegfx/source/range/b2dpolyrange.cxx
@@ -31,10 +31,7 @@ namespace basegfx
     class ImplB2DPolyRange
     {
     public:
-        ImplB2DPolyRange() :
-            maBounds(),
-            maRanges(),
-            maOrient()
+        ImplB2DPolyRange()
         {}
 
         bool operator==(const ImplB2DPolyRange& rRHS) const
diff --git a/basegfx/source/range/b2drange.cxx b/basegfx/source/range/b2drange.cxx
index 55b545933d88..be025cc64b1d 100644
--- a/basegfx/source/range/b2drange.cxx
+++ b/basegfx/source/range/b2drange.cxx
@@ -23,9 +23,7 @@
 
 namespace basegfx
 {
-    B2DRange::B2DRange( const B2IRange& rRange ) :
-        maRangeX(),
-        maRangeY()
+    B2DRange::B2DRange( const B2IRange& rRange )
     {
         if( !rRange.isEmpty() )
         {
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx
index 5dc452728772..2920cda5ebd0 100644
--- a/basegfx/source/range/b2drangeclipper.cxx
+++ b/basegfx/source/range/b2drangeclipper.cxx
@@ -226,7 +226,6 @@ namespace basegfx
             ImplPolygon() :
                 mpLeadingRightEdge(nullptr),
                 mnIdx(-1),
-                maPoints(),
                 mbIsFinished(false)
             {
                 // completely ad-hoc. but what the hell.
diff --git a/basegfx/source/raster/rasterconvert3d.cxx b/basegfx/source/raster/rasterconvert3d.cxx
index 48a5c7bb518f..e998eb99381b 100644
--- a/basegfx/source/raster/rasterconvert3d.cxx
+++ b/basegfx/source/raster/rasterconvert3d.cxx
@@ -48,8 +48,6 @@ namespace basegfx
     }
 
     RasterConverter3D::RasterConverter3D()
-    :   InterpolatorProvider3D(),
-        maLineEntries()
     {}
 
     RasterConverter3D::~RasterConverter3D()
diff --git a/basegfx/source/tools/b2dclipstate.cxx b/basegfx/source/tools/b2dclipstate.cxx
index aa5f655ccbc7..7b8309e0de1c 100644
--- a/basegfx/source/tools/b2dclipstate.cxx
+++ b/basegfx/source/tools/b2dclipstate.cxx
@@ -36,15 +36,10 @@ namespace basegfx::utils
         enum Operation {UNION, INTERSECT, XOR, SUBTRACT};
 
         ImplB2DClipState() :
-            maPendingPolygons(),
-            maPendingRanges(),
-            maClipPoly(),
             mePendingOps(UNION)
         {}
 
         explicit ImplB2DClipState( const B2DPolyPolygon& rPoly ) :
-            maPendingPolygons(),
-            maPendingRanges(),
             maClipPoly(rPoly),
             mePendingOps(UNION)
         {}
diff --git a/basegfx/source/tools/systemdependentdata.cxx b/basegfx/source/tools/systemdependentdata.cxx
index e333ce473437..106124f57389 100644
--- a/basegfx/source/tools/systemdependentdata.cxx
+++ b/basegfx/source/tools/systemdependentdata.cxx
@@ -96,7 +96,6 @@ namespace basegfx
 namespace basegfx
 {
     SystemDependentDataHolder::SystemDependentDataHolder()
-    :   maSystemDependentReferences()
     {
     }
 
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 4131980848ba..c1753a67aca0 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -4196,8 +4196,7 @@ public:
 }
 
 ModuleInvocationProxy::ModuleInvocationProxy( std::u16string_view  aPrefix, SbxObjectRef const & xScopeObj )
-    : m_aMutex()
-    , m_aPrefix( OUString::Concat(aPrefix) + "_" )
+    : m_aPrefix( OUString::Concat(aPrefix) + "_" )
     , m_xScopeObj( xScopeObj )
     , m_aListeners( m_aMutex )
 {
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx
index a54845d1c7c8..d8f16f5891c1 100644
--- a/basic/source/sbx/sbxarray.cxx
+++ b/basic/source/sbx/sbxarray.cxx
@@ -35,7 +35,7 @@ struct SbxVarEntry
 
 //  SbxArray
 
-SbxArray::SbxArray( SbxDataType t ) : SbxBase()
+SbxArray::SbxArray( SbxDataType t )
 {
     eType = t;
     if( t != SbxVARIANT )
diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx
index e67044def3f3..4d278191bc20 100644
--- a/basic/source/sbx/sbxvalue.cxx
+++ b/basic/source/sbx/sbxvalue.cxx
@@ -35,12 +35,12 @@
 
 ///////////////////////////// constructors
 
-SbxValue::SbxValue() : SbxBase()
+SbxValue::SbxValue()
 {
     aData.eType = SbxEMPTY;
 }
 
-SbxValue::SbxValue( SbxDataType t ) : SbxBase()
+SbxValue::SbxValue( SbxDataType t )
 {
     int n = t & 0x0FFF;
 
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index b3a0e6db1ce8..5900c68b9073 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -36,7 +36,7 @@ using namespace com::sun::star::uno;
 
 // SbxVariable
 
-SbxVariable::SbxVariable() : SbxValue()
+SbxVariable::SbxVariable()
 {
 }
 
@@ -539,7 +539,7 @@ bool SbxVariable::StoreData( SvStream& rStrm ) const
 // SbxInfo
 
 SbxInfo::SbxInfo()
-        : aHelpFile(), nHelpId(0)
+        :  nHelpId(0)
 {}
 
 SbxInfo::SbxInfo( const OUString& r, sal_uInt32 n )
diff --git a/include/basegfx/color/bcolor.hxx b/include/basegfx/color/bcolor.hxx
index 414a815b3d87..d8788b1cfef1 100644
--- a/include/basegfx/color/bcolor.hxx
+++ b/include/basegfx/color/bcolor.hxx
@@ -45,7 +45,6 @@ namespace basegfx
             The color is initialized to (0.0, 0.0, 0.0)
         */
         BColor()
-        :   B3DTuple()
         {}
 
         /** Create a 3D Color
diff --git a/include/basegfx/color/bcolormodifier.hxx b/include/basegfx/color/bcolormodifier.hxx
index 0ce8cbf1b4ed..c2347eb2c1e4 100644
--- a/include/basegfx/color/bcolormodifier.hxx
+++ b/include/basegfx/color/bcolormodifier.hxx
@@ -88,7 +88,6 @@ namespace basegfx
     {
     public:
         BColorModifier_gray()
-        :   BColorModifier()
         {
         }
 
@@ -109,7 +108,6 @@ namespace basegfx
     {
     public:
         BColorModifier_invert()
-        :   BColorModifier()
         {
         }
 
@@ -134,7 +132,6 @@ namespace basegfx
     {
     public:
         BColorModifier_luminance_to_alpha()
-        :   BColorModifier()
         {
         }
 
@@ -160,8 +157,7 @@ namespace basegfx
 
     public:
         BColorModifier_replace(const ::basegfx::BColor& rBColor)
-        :   BColorModifier(),
-            maBColor(rBColor)
+        :   maBColor(rBColor)
         {
         }
 
@@ -192,8 +188,7 @@ namespace basegfx
 
     public:
         BColorModifier_interpolate(const ::basegfx::BColor& rBColor, double fValue)
-        :   BColorModifier(),
-            maBColor(rBColor),
+        :   maBColor(rBColor),
             mfValue(fValue)
         {
         }
@@ -219,8 +214,7 @@ namespace basegfx
 
     public:
         BColorModifier_black_and_white(double fValue)
-        :   BColorModifier(),
-            mfValue(fValue)
+        :   mfValue(fValue)
         {
         }
 
diff --git a/include/basegfx/matrix/b2dhommatrixtools.hxx b/include/basegfx/matrix/b2dhommatrixtools.hxx
index b7159aef6165..dfb7de3e746f 100644
--- a/include/basegfx/matrix/b2dhommatrixtools.hxx
+++ b/include/basegfx/matrix/b2dhommatrixtools.hxx
@@ -157,9 +157,7 @@ namespace basegfx::utils
 
         public:
             B2DHomMatrixBufferedDecompose(const B2DHomMatrix& rB2DHomMatrix = B2DHomMatrix())
-            :   maScale(),
-                maTranslate(),
-                mfRotate(0.0),
+            :   mfRotate(0.0),
                 mfShearX(0.0)
             {
                 rB2DHomMatrix.decompose(maScale, maTranslate, mfRotate, mfShearX);
@@ -201,8 +199,6 @@ namespace basegfx::utils
         public:
             B2DHomMatrixBufferedOnDemandDecompose(const B2DHomMatrix& rB2DHomMatrix = B2DHomMatrix())
             :   maB2DHomMatrix(rB2DHomMatrix),
-                maScale(),
-                maTranslate(),
                 mfRotate(0.0),
                 mfShearX(0.0),
                 mbDecomposed(false)
diff --git a/include/basegfx/point/b2dpoint.hxx b/include/basegfx/point/b2dpoint.hxx
index 413aa00e40b5..d2f77aa493a3 100644
--- a/include/basegfx/point/b2dpoint.hxx
+++ b/include/basegfx/point/b2dpoint.hxx
@@ -45,7 +45,6 @@ namespace basegfx
             The point is initialized to (0.0, 0.0)
         */
         B2DPoint()
-        :   B2DTuple()
         {}
 
         /** Create a 2D Point
diff --git a/include/basegfx/point/b2ipoint.hxx b/include/basegfx/point/b2ipoint.hxx
index 4c0802b572ae..9357e9f0fdfc 100644
--- a/include/basegfx/point/b2ipoint.hxx
+++ b/include/basegfx/point/b2ipoint.hxx
@@ -41,7 +41,6 @@ namespace basegfx
             The point is initialized to (0, 0)
         */
         B2IPoint()
-        :   B2ITuple()
         {}
 
         /** Create a 2D Point
diff --git a/include/basegfx/point/b3dpoint.hxx b/include/basegfx/point/b3dpoint.hxx
index 2cb8acf9be50..e424f0a4c1ea 100644
--- a/include/basegfx/point/b3dpoint.hxx
+++ b/include/basegfx/point/b3dpoint.hxx
@@ -42,7 +42,6 @@ namespace basegfx
             The point is initialized to (0.0, 0.0, 0.0)
         */
         B3DPoint()
-        :   B3DTuple()
         {}
 
         /** Create a 3D Point
diff --git a/include/basegfx/range/b2dconnectedranges.hxx b/include/basegfx/range/b2dconnectedranges.hxx
index 0d7a81481fdd..0dc7a4c242bf 100644
--- a/include/basegfx/range/b2dconnectedranges.hxx
+++ b/include/basegfx/range/b2dconnectedranges.hxx
@@ -77,8 +77,7 @@ namespace basegfx
 
         /// Create the range calculator
         B2DConnectedRanges() :
-            maDisjunctAggregatesList(),
-            maTotalBounds()
+            maDisjunctAggregatesList()
         {
         }
 
diff --git a/include/basegfx/raster/rasterconvert3d.hxx b/include/basegfx/raster/rasterconvert3d.hxx
index 59a309c865f7..f36232eec1d4 100644
--- a/include/basegfx/raster/rasterconvert3d.hxx
+++ b/include/basegfx/raster/rasterconvert3d.hxx
@@ -71,8 +71,6 @@ namespace basegfx
 
     public:
         ip_double()
-        :   maX(),
-            maY()
         {}
 
         ip_double(double fXVal, double fXInc, double fYVal, double fYInc)
@@ -95,9 +93,6 @@ namespace basegfx
 
     public:
         ip_triple()
-        :   maX(),
-            maY(),
-            maZ()
         {}
 
         ip_triple(double fXVal, double fXInc, double fYVal, double fYInc, double fZVal, double fZInc)
diff --git a/include/basegfx/utils/gradienttools.hxx b/include/basegfx/utils/gradienttools.hxx
index 331e2998b32f..e3d816394b54 100644
--- a/include/basegfx/utils/gradienttools.hxx
+++ b/include/basegfx/utils/gradienttools.hxx
@@ -66,9 +66,7 @@ namespace basegfx
 
     public:
         ODFGradientInfo()
-        :   maTextureTransform(),
-            maBackTextureTransform(),
-            mfAspectRatio(1.0),
+        :   mfAspectRatio(1.0),
             mnSteps(0)
         {
         }
@@ -78,7 +76,6 @@ namespace basegfx
             double fAspectRatio,
             sal_uInt32 nSteps)
         :   maTextureTransform(rTextureTransform),
-            maBackTextureTransform(),
             mfAspectRatio(fAspectRatio),
             mnSteps(nSteps)
         {
diff --git a/include/basegfx/vector/b2dvector.hxx b/include/basegfx/vector/b2dvector.hxx
index cfb1e58d1c80..17a9c60b0f71 100644
--- a/include/basegfx/vector/b2dvector.hxx
+++ b/include/basegfx/vector/b2dvector.hxx
@@ -44,7 +44,6 @@ namespace basegfx
             The vector is initialized to (0.0, 0.0)
         */
         B2DVector()
-        :   B2DTuple()
         {}
 
         /** Create a 2D Vector
diff --git a/include/basegfx/vector/b2ivector.hxx b/include/basegfx/vector/b2ivector.hxx
index fbb1c642292e..b542fe880e46 100644
--- a/include/basegfx/vector/b2ivector.hxx
+++ b/include/basegfx/vector/b2ivector.hxx
@@ -44,7 +44,6 @@ namespace basegfx
             The vector is initialized to (0, 0)
         */
         B2IVector()
-        :   B2ITuple()
         {}
 
         /** Create a 2D Vector
diff --git a/include/basegfx/vector/b3dvector.hxx b/include/basegfx/vector/b3dvector.hxx
index 1f38d5dd7f7e..399bba3edf7c 100644
--- a/include/basegfx/vector/b3dvector.hxx
+++ b/include/basegfx/vector/b3dvector.hxx
@@ -42,7 +42,6 @@ namespace basegfx
             The vector is initialized to (0.0, 0.0, 0.0)
         */
         B3DVector()
-        :   B3DTuple()
         {}
 
         /** Create a 3D Vector


More information about the Libreoffice-commits mailing list