diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-31 16:37:55 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-01 09:05:46 +0000 |
commit | b8ee524330d924456931ad602eb4701b55a2aa85 (patch) | |
tree | d5bcc6cfeed82d8aecf75efb256916eed2271304 /svx | |
parent | 26c149617c54e29902a77d2f95ca7c64af13b52f (diff) |
loplugin:countusersofdefaultparams
Change-Id: Ifc9cdbda77048791203e89350c2efa9a6c34c4a5
Reviewed-on: https://gerrit.libreoffice.org/28555
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/shapeimpl.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/unodraw/shapeimpl.hxx b/svx/source/unodraw/shapeimpl.hxx index 9b3367d1ba65..a42286d77174 100644 --- a/svx/source/unodraw/shapeimpl.hxx +++ b/svx/source/unodraw/shapeimpl.hxx @@ -42,7 +42,7 @@ public: virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) throw (css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; - virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage = nullptr ) override; + virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override; }; class SvxAppletShape : public SvxOle2Shape { @@ -60,7 +60,7 @@ public: virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) throw (css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; - virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage = nullptr ) override; + virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override; }; class SvxFrameShape : public SvxOle2Shape { @@ -83,7 +83,7 @@ public: virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) throw (css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; - virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage = nullptr ) throw (css::uno::RuntimeException, std::exception) override; + virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) throw (css::uno::RuntimeException, std::exception) override; }; |