diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-22 10:36:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-22 12:01:31 +0000 |
commit | ac9ba521176c602544bf5fe1fdc1d216bfdd9849 (patch) | |
tree | c4e6a3026d46e342b02b920e91a83ece2eb4e235 /include/sfx2/frame.hxx | |
parent | 0de1b34a89a5bafa87a031da7e53e902ec14312c (diff) |
loplugin:countusersofdefaultparams in include/sfx2
Change-Id: I8b5e3ebbfb715d0b6aec2c4137f0ff524b63227e
Reviewed-on: https://gerrit.libreoffice.org/31065
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2/frame.hxx')
-rw-r--r-- | include/sfx2/frame.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sfx2/frame.hxx b/include/sfx2/frame.hxx index 2df3fcd830c0..a46fd2616cec 100644 --- a/include/sfx2/frame.hxx +++ b/include/sfx2/frame.hxx @@ -186,7 +186,7 @@ class SFX2_DLLPUBLIC SfxFrameItem: public SfxPoolItem public: SfxFrameItem( sal_uInt16 nWhich, SfxViewFrame *p ); - SfxFrameItem( SfxFrame *p=nullptr ); + SfxFrameItem( SfxFrame *p ); SfxFrameItem( sal_uInt16 nWhich, SfxFrame *p ); virtual bool operator==( const SfxPoolItem& ) const override; @@ -195,8 +195,7 @@ public: virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override; virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; - SfxFrame* GetFrame() const - { return wFrame; } + SfxFrame* GetFrame() const { return wFrame; } }; class SFX2_DLLPUBLIC SfxUsrAnyItem : public SfxPoolItem |