diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-18 15:21:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-21 14:47:48 +0200 |
commit | 13012b3cfee3dfe8979de96fe22c9b8d20637755 (patch) | |
tree | 07f4052bfc4ba96cae42f7a243243b04da97b4fe /editeng/source/accessibility | |
parent | 3f2babb8aa1267649fa1c1903d11b7c0c304cf7c (diff) |
loplugin:virtualdead unused param in EditEngine::FieldClicked
Change-Id: Iffe075960308d5058cb7535e9216caa37aabe0c5
Reviewed-on: https://gerrit.libreoffice.org/81232
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng/source/accessibility')
-rw-r--r-- | editeng/source/accessibility/AccessibleHyperlink.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/accessibility/AccessibleHyperlink.cxx b/editeng/source/accessibility/AccessibleHyperlink.cxx index 104051824ea7..fea7bccfc0be 100644 --- a/editeng/source/accessibility/AccessibleHyperlink.cxx +++ b/editeng/source/accessibility/AccessibleHyperlink.cxx @@ -62,7 +62,7 @@ namespace accessibility bool bRet = false; if ( isValid() && ( nIndex == 0 ) ) { - rTA.FieldClicked( *pFld, nPara, nRealIdx ); + rTA.FieldClicked( *pFld ); bRet = true; } return bRet; |