diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-14 10:52:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-14 10:53:30 +0200 |
commit | faf4bf0c3e017b9caec27a1f7355c9cf636bf19b (patch) | |
tree | eec729652be79c6733b3461265d65697bc340066 /starmath | |
parent | e9f28d0d98fef5aff63131a8e1c3395da0a422ad (diff) |
loplugin:countusersofdefaultparams in sot..svtools
Change-Id: Ifce19de3518f3eaf5a1b6439f9053feee4a33c14
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/caret.hxx | 6 | ||||
-rw-r--r-- | starmath/inc/unomodel.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/starmath/inc/caret.hxx b/starmath/inc/caret.hxx index e2c648643008..08afcce5bcc1 100644 --- a/starmath/inc/caret.hxx +++ b/starmath/inc/caret.hxx @@ -99,9 +99,9 @@ private: /** An entry in SmCaretPosGraph */ struct SmCaretPosGraphEntry{ - SmCaretPosGraphEntry(SmCaretPos pos = SmCaretPos(), - SmCaretPosGraphEntry* left = nullptr, - SmCaretPosGraphEntry* right = nullptr){ + SmCaretPosGraphEntry(SmCaretPos pos, + SmCaretPosGraphEntry* left, + SmCaretPosGraphEntry* right) { CaretPos = pos; Left = left; Right = right; diff --git a/starmath/inc/unomodel.hxx b/starmath/inc/unomodel.hxx index f20cdb8f95f5..34133b0fc6cb 100644 --- a/starmath/inc/unomodel.hxx +++ b/starmath/inc/unomodel.hxx @@ -59,7 +59,7 @@ protected: virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, css::uno::Any* pValue ) throw (css::uno::RuntimeException, css::beans::UnknownPropertyException, css::lang::WrappedTargetException, std::exception) override; public: - explicit SmModel( SfxObjectShell *pObjSh = nullptr ); + explicit SmModel( SfxObjectShell *pObjSh ); virtual ~SmModel() throw () override; //XInterface |