diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-24 12:54:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-25 07:00:51 +0200 |
commit | 8f254a45d78dee53764321244aca108e2a1d344c (patch) | |
tree | 0de6c2591e041e3e75085880b84e9c80afaa5f26 /basctl | |
parent | e4f28aea21ce7e8f960cc2062f83715549be215e (diff) |
loplugin:checkunusedparams in vcl
Change-Id: I26661684e634aa15a18f78442de15c9db832f319
Reviewed-on: https://gerrit.libreoffice.org/36886
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 612f724a6810..7876a0a1ad49 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -340,7 +340,7 @@ void EditorWindow::RequestHelp( const HelpEvent& rHEvt ) Point aWindowPos = rHEvt.GetMousePosPixel(); aWindowPos = ScreenToOutputPixel( aWindowPos ); Point aDocPos = GetEditView()->GetDocPos( aWindowPos ); - TextPaM aCursor = GetEditView()->GetTextEngine()->GetPaM(aDocPos, false); + TextPaM aCursor = GetEditView()->GetTextEngine()->GetPaM(aDocPos); TextPaM aStartOfWord; OUString aWord = GetEditView()->GetTextEngine()->GetWord( aCursor, &aStartOfWord ); if ( !aWord.isEmpty() && !comphelper::string::isdigitAsciiString(aWord) ) |