diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-11 16:02:17 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-01-12 07:39:42 +0000 |
commit | 1f9a610de1e1e540386972c010ebfc99e5f55df7 (patch) | |
tree | aabfe490a5de78c0936e7237695c2ef6680f75df /editeng/qa | |
parent | c93486bbb85ae19b6d15395afbd7aec3c5db7e89 (diff) |
loplugin:unusedmethods unused return value in include/editeng
Change-Id: I1314480950b0d3a3e5ed066d71c175604dd41970
Reviewed-on: https://gerrit.libreoffice.org/21361
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'editeng/qa')
-rw-r--r-- | editeng/qa/unit/core-test.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editeng/qa/unit/core-test.cxx b/editeng/qa/unit/core-test.cxx index 0c6acef40c90..d1c73af64bbc 100644 --- a/editeng/qa/unit/core-test.cxx +++ b/editeng/qa/unit/core-test.cxx @@ -260,10 +260,9 @@ private: m_rText = m_rText.replaceAt(nPos, nLen, rTxt); return true; } - virtual bool SetAttr( sal_Int32, sal_Int32, sal_uInt16, SfxPoolItem& ) override + virtual void SetAttr( sal_Int32, sal_Int32, sal_uInt16, SfxPoolItem& ) override { //fprintf(stderr, "TestAutoCorrDoc::SetAttr\n"); - return true; } virtual bool SetINetAttr( sal_Int32, sal_Int32, const OUString& ) override { |