diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-04 12:03:36 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-05 06:23:06 +0000 |
commit | 5d22a47b4431c5718d989e738d2963d0b880d898 (patch) | |
tree | b82a87eb09ed344dbbd368ee6b5cd6926a1a8e93 /include/svtools/svlbitm.hxx | |
parent | 87ee6c044d79978d2121087f5e1a10f417adf9c7 (diff) |
loplugin:countusersofdefaultparams
Change-Id: I38bfc88e85a9e5a024e982e555a0e0485a3010ad
Reviewed-on: https://gerrit.libreoffice.org/28662
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svtools/svlbitm.hxx')
-rw-r--r-- | include/svtools/svlbitm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/svlbitm.hxx b/include/svtools/svlbitm.hxx index f520f8682625..159ef350f160 100644 --- a/include/svtools/svlbitm.hxx +++ b/include/svtools/svlbitm.hxx @@ -68,7 +68,7 @@ private: std::vector<Image> aBmps; // indices s. constants BMP_ .... SVT_DLLPRIVATE void SetWidthAndHeight(); - SVT_DLLPRIVATE void InitData( bool _bRadioBtn, const Control* pControlForSettings = nullptr ); + SVT_DLLPRIVATE void InitData( bool _bRadioBtn, const Control* pControlForSettings ); public: // include creating default images (CheckBox or RadioButton) SvLBoxButtonData( const Control* pControlForSettings ); @@ -92,7 +92,7 @@ public: void SetImage(SvBmp nIndex, const Image& aImage) { aBmps[(int)nIndex] = aImage; } Image& GetImage(SvBmp nIndex) { return aBmps[(int)nIndex]; } - void SetDefaultImages( const Control* pControlForSettings = nullptr ); + void SetDefaultImages( const Control* pControlForSettings ); // set images according to the color scheme of the Control // pControlForSettings == NULL: settings are taken from Application bool HasDefaultImages() const; |