diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-12 10:25:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-12 10:37:20 +0200 |
commit | 0078512edadbba9b8acefffce4c51220a3b00118 (patch) | |
tree | 8665b5d00aacdeda2d82af15321da43664e63380 /formula/source/ui | |
parent | 29137eef25f437a1bcb9243cc9d86a6ae2277911 (diff) |
loplugin:unusedmethods unused return value in include/formula
Change-Id: Ic5d6c11d955ef5ef53dea0bb4e5bec8167874a91
Diffstat (limited to 'formula/source/ui')
-rw-r--r-- | formula/source/ui/dlg/formula.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/formula/source/ui/dlg/formula.cxx b/formula/source/ui/dlg/formula.cxx index 1cf839d12eb3..26fbf81b818c 100644 --- a/formula/source/ui/dlg/formula.cxx +++ b/formula/source/ui/dlg/formula.cxx @@ -1742,9 +1742,9 @@ void FormulaModalDialog::SetMeText(const OUString& _sText) m_pImpl->SetMeText(_sText); } -bool FormulaModalDialog::CheckMatrix(OUString& aFormula) +void FormulaModalDialog::CheckMatrix(OUString& aFormula) { - return m_pImpl->CheckMatrix(aFormula); + m_pImpl->CheckMatrix(aFormula); } void FormulaModalDialog::Update() |