summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-04 13:52:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-05 07:32:33 +0100
commiteaf89e477af94bd3977aca17d72dd442c7604e63 (patch)
tree4fdbf97b398bbac50b40ceff3f607460846c6c6f /include
parentebc5774c0546cd0b4ca4ad5a125fd9f8ec0e9ce4 (diff)
loplugin:countusersofdefaultparams in editeng..package
Change-Id: I4c20235a04d9ab5ea5edbb6b1b2413677b18a305 Reviewed-on: https://gerrit.libreoffice.org/45795 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/editeng/boxitem.hxx2
-rw-r--r--include/filter/msfilter/msdffimp.hxx10
2 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/boxitem.hxx b/include/editeng/boxitem.hxx
index d0d2143c576f..d2c155e822b3 100644
--- a/include/editeng/boxitem.hxx
+++ b/include/editeng/boxitem.hxx
@@ -112,7 +112,7 @@ public:
// bEvenIfNoLine = TRUE -> Also return distance, when no Line is set
sal_uInt16 CalcLineWidth( SvxBoxItemLine nLine ) const;
sal_uInt16 CalcLineSpace( SvxBoxItemLine nLine, bool bEvenIfNoLine = false ) const;
- bool HasBorder( bool bTreatPaddingAsBorder = false ) const;
+ bool HasBorder( bool bTreatPaddingAsBorder ) const;
static css::table::BorderLine2 SvxLineToLine( const editeng::SvxBorderLine* pLine, bool bConvert );
static bool LineToSvxLine(const css::table::BorderLine& rLine, editeng::SvxBorderLine& rSvxLine, bool bConvert);
static bool LineToSvxLine(const css::table::BorderLine2& rLine, editeng::SvxBorderLine& rSvxLine, bool bConvert);
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx
index 9e5e814016ba..ed0954111fa7 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -580,7 +580,7 @@ public:
sal_uInt32 nOffsDgg,
SvStream* pStData,
SdrModel* pSdrModel_,
- long nApplicationScale = 0,
+ long nApplicationScale,
ColorData mnDefaultColor_ = COL_DEFAULT,
SvStream* pStData2_ = nullptr,
bool bSkipImages = false );
@@ -644,22 +644,22 @@ public:
void* pData,
tools::Rectangle& rClientRect,
const tools::Rectangle& rGlobalChildRect,
- int nCalledByGroup = 0,
- sal_Int32* pShapeId = nullptr);
+ int nCalledByGroup,
+ sal_Int32* pShapeId);
SdrObject* ImportGroup( const DffRecordHeader& rHd,
SvStream& rSt,
void* pData,
tools::Rectangle& rClientRect,
const tools::Rectangle& rGlobalChildRect,
int nCalledByGroup,
- sal_Int32* pShapeId = nullptr );
+ sal_Int32* pShapeId );
SdrObject* ImportShape( const DffRecordHeader& rHd,
SvStream& rSt,
void* pData,
tools::Rectangle& rClientRect,
const tools::Rectangle& rGlobalChildRect,
int nCalledByGroup,
- sal_Int32* pShapeId = nullptr);
+ sal_Int32* pShapeId);
tools::Rectangle GetGlobalChildAnchor( const DffRecordHeader& rHd,
SvStream& rSt,