diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-31 10:51:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-31 12:09:24 +0200 |
commit | b1a1baa66a8eb0553df87769d48e3cc7e533a1d8 (patch) | |
tree | fe77a0f819887add2fbe03d4cc7a5b9d88cc104e /formula | |
parent | 4732e65646016087d772adb3a0b55c166b35356d (diff) |
loplugin:constparams in formula,xmlhelp
Change-Id: I1c987d991a5b292df327d1bb921099233b5531fe
Reviewed-on: https://gerrit.libreoffice.org/40584
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 4 | ||||
-rw-r--r-- | formula/source/ui/dlg/formula.cxx | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index fce3e1b828c2..8f778bde6b45 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -2590,7 +2590,7 @@ formula::ParamClass FormulaCompiler::GetForceArrayParameter( const FormulaToken* return ParamClass::Unknown; } -void FormulaCompiler::ForceArrayOperator( FormulaTokenRef& rCurr ) +void FormulaCompiler::ForceArrayOperator( FormulaTokenRef const & rCurr ) { if (!pCurrentFactorToken || (pCurrentFactorToken.get() == rCurr.get())) return; @@ -2628,7 +2628,7 @@ void FormulaCompiler::ForceArrayOperator( FormulaTokenRef& rCurr ) } } -void FormulaCompiler::CheckSetForceArrayParameter( FormulaTokenRef& rCurr, sal_uInt8 nParam ) +void FormulaCompiler::CheckSetForceArrayParameter( FormulaTokenRef const & rCurr, sal_uInt8 nParam ) { if (!pCurrentFactorToken) return; diff --git a/formula/source/ui/dlg/formula.cxx b/formula/source/ui/dlg/formula.cxx index ef446966f694..2290a98ac4a4 100644 --- a/formula/source/ui/dlg/formula.cxx +++ b/formula/source/ui/dlg/formula.cxx @@ -121,7 +121,7 @@ public: void UpdateParaWin( const Selection& _rSelection, const OUString& _sRefStr); void SetData( sal_Int32 nFStart, sal_Int32 nNextFStart, sal_Int32 nNextFEnd, sal_Int32& PrivStart, sal_Int32& PrivEnd); - void PreNotify( NotifyEvent& rNEvt ); + void PreNotify( NotifyEvent const & rNEvt ); RefEdit* GetCurrRefEdit(); @@ -381,7 +381,7 @@ void FormulaDlg_Impl::StoreFormEditData(FormEditData* pData) } -void FormulaDlg_Impl::PreNotify( NotifyEvent& rNEvt ) +void FormulaDlg_Impl::PreNotify( NotifyEvent const & rNEvt ) { if (m_bIsShutDown) return; @@ -1745,7 +1745,7 @@ void FormulaDlg_Impl::SetEdSelection() } FormulaModalDialog::FormulaModalDialog( vcl::Window* pParent - , IFunctionManager* _pFunctionMgr + , IFunctionManager const * _pFunctionMgr , IControlReferenceHandler* _pDlg ) : ModalDialog(pParent, "FormulaDialog", "formula/ui/formuladialog.ui") , m_pImpl(new FormulaDlg_Impl(this, false/*_bSupportFunctionResult*/, @@ -1816,7 +1816,7 @@ void FormulaModalDialog::StoreFormEditData(FormEditData* pData) FormulaDlg::FormulaDlg( SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent - , IFunctionManager* _pFunctionMgr, IControlReferenceHandler* _pDlg ) : + , IFunctionManager const * _pFunctionMgr, IControlReferenceHandler* _pDlg ) : SfxModelessDialog( pB, pCW, pParent, "FormulaDialog", "formula/ui/formuladialog.ui" ), m_pImpl( new FormulaDlg_Impl(this, true/*_bSupportFunctionResult*/ , true/*_bSupportResult*/ |