summaryrefslogtreecommitdiffstats
path: root/include/svx/framelink.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-01 12:44:03 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-09-02 07:32:17 +0000
commit175c49baef5d8dd3f7a28fec5a3dce956303dc42 (patch)
treec354cdcdd75bee54a9fbf6895fe9f801a107c27f /include/svx/framelink.hxx
parentRevert "tdf#101629: fix https://addons.mozilla.org/ case" (diff)
downloadcore-175c49baef5d8dd3f7a28fec5a3dce956303dc42.tar.gz
core-175c49baef5d8dd3f7a28fec5a3dce956303dc42.zip
loplugin:countusersofdefaultparams
Change-Id: I2ed581e58523ac8b52aa520f7a02f69f408665fe Reviewed-on: https://gerrit.libreoffice.org/28587 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx/framelink.hxx')
-rw-r--r--include/svx/framelink.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/framelink.hxx b/include/svx/framelink.hxx
index 7f3a5ba6e57d..bbe5234b7a5e 100644
--- a/include/svx/framelink.hxx
+++ b/include/svx/framelink.hxx
@@ -140,9 +140,9 @@ public:
void Set( const Color& rColorPrim, const Color& rColorSecn, const Color& rColorGap, bool bUseGapColor,
double nP, double nD, double nS );
/** Sets the frame style to the passed SvxBorderLine struct. */
- void Set( const editeng::SvxBorderLine& rBorder, double fScale = 1.0, sal_uInt16 nMaxWidth = SAL_MAX_UINT16 );
+ void Set( const editeng::SvxBorderLine& rBorder, double fScale, sal_uInt16 nMaxWidth = SAL_MAX_UINT16 );
/** Sets the frame style to the passed SvxBorderLine struct. Clears the style, if pBorder is 0. */
- void Set( const editeng::SvxBorderLine* pBorder, double fScale = 1.0, sal_uInt16 nMaxWidth = SAL_MAX_UINT16 );
+ void Set( const editeng::SvxBorderLine* pBorder, double fScale, sal_uInt16 nMaxWidth = SAL_MAX_UINT16 );
/** Sets a new reference point handling mode, does not modify other settings. */
inline void SetRefMode( RefMode eRefMode ) { meRefMode = eRefMode; }
@@ -446,7 +446,7 @@ SVX_DLLPUBLIC drawinglayer::primitive2d::Primitive2DContainer CreateBorderPrimit
const Style& rRFromB, /// Vertical frame border from bottom to right end of rBorder.
const DiagStyle& rRFromBL, /// Diagonal frame border from bottom-left to right end of rBorder.
- const Color* pForceColor = nullptr,/// If specified, overrides frame border color.
+ const Color* pForceColor, /// If specified, overrides frame border color.
const long rRotationT = 9000, /// Angle of the top slanted frames in 100th of degree
const long rRotationB = 9000 /// Angle of the bottom slanted frames in 100th of degree
);
@@ -464,7 +464,7 @@ SVX_DLLPUBLIC drawinglayer::primitive2d::Primitive2DContainer CreateBorderPrimit
const Style& rRFromR, /// Horizontal frame border from right to right end of rBorder.
const Style& rRFromB, /// Vertical frame border from bottom to right end of rBorder.
- const Color* pForceColor = nullptr,/// If specified, overrides frame border color.
+ const Color* pForceColor, /// If specified, overrides frame border color.
const long rRotationT = 9000, /// Angle of the top slanted frame in 100th of degrees
const long rRotationB = 9000 /// Angle of the bottom slanted frame in 100th of degrees
);
@@ -624,7 +624,7 @@ SVX_DLLPUBLIC void DrawDiagFrameBorders(
const Style& rTRFromB, /// Vertical frame border from bottom to top-right end of rBLTR.
const Style& rTRFromL, /// Horizontal frame border from left to top-right end of rBLTR.
- const Color* pForceColor = nullptr, /// If specified, overrides frame border color.
+ const Color* pForceColor, /// If specified, overrides frame border color.
bool bDiagDblClip = false /// true = Use clipping for crossing double frame borders.
);