diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-03 11:15:36 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-03 11:15:52 +0200 |
commit | 2437ccd3e90db011fb7e04f31eb4033d50919d77 (patch) | |
tree | 0add7e1e0f02fa07714bce0f35435658642c9214 /include | |
parent | a9b7c6f4b72ecf141203c03664bed0ca81057e01 (diff) |
loplugin:unuseddefaultparams in formula
Change-Id: I7f0baa2709db24e8299f0e1c19c0703aee1cbf4f
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/FormulaCompiler.hxx | 3 | ||||
-rw-r--r-- | include/formula/IControlReferenceHandler.hxx | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx index 00e76faa45d7..24956d69c279 100644 --- a/include/formula/FormulaCompiler.hxx +++ b/include/formula/FormulaCompiler.hxx @@ -237,8 +237,7 @@ public: void CreateStringFromTokenArray( OUString& rFormula ); void CreateStringFromTokenArray( OUStringBuffer& rBuffer ); - const FormulaToken* CreateStringFromToken( OUString& rFormula, const FormulaToken* pToken, - bool bAllowArrAdvance = false ); + const FormulaToken* CreateStringFromToken( OUString& rFormula, const FormulaToken* pToken ); const FormulaToken* CreateStringFromToken( OUStringBuffer& rBuffer, const FormulaToken* pToken, bool bAllowArrAdvance = false ); diff --git a/include/formula/IControlReferenceHandler.hxx b/include/formula/IControlReferenceHandler.hxx index 9dbde6cfa57d..595eb13e05de 100644 --- a/include/formula/IControlReferenceHandler.hxx +++ b/include/formula/IControlReferenceHandler.hxx @@ -31,7 +31,7 @@ namespace formula public: virtual void ShowReference(const OUString& _sRef) = 0; virtual void HideReference( bool bDoneRefMode = true ) = 0; - virtual void ReleaseFocus( RefEdit* pEdit, RefButton* pButton = nullptr ) = 0; + virtual void ReleaseFocus( RefEdit* pEdit ) = 0; virtual void ToggleCollapsed( RefEdit* pEdit, RefButton* pButton = nullptr ) = 0; protected: |