diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-02-23 14:35:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-23 17:43:06 +0100 |
commit | 4b9ad812facbd9416d9658325791bad3ab48934d (patch) | |
tree | 69da14f9b8d1b5987a4b567fb793269ce3f886b9 /editeng/source | |
parent | a3f83ecbeab33244b526ec68ca0f2034745a6371 (diff) |
loplugin:constantparam
Change-Id: Ieaee9a3e3ef4aa9bc390ddb198ee1718f635bcbf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111391
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/outliner/outlvw.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/outliner/outlvw.cxx b/editeng/source/outliner/outlvw.cxx index 3c5db2437d88..d9a832fb524c 100644 --- a/editeng/source/outliner/outlvw.cxx +++ b/editeng/source/outliner/outlvw.cxx @@ -1341,9 +1341,9 @@ bool OutlinerView::IsCursorAtWrongSpelledWord() } -bool OutlinerView::IsWrongSpelledWordAtPos( const Point& rPosPixel, bool bMarkIfWrong ) +bool OutlinerView::IsWrongSpelledWordAtPos( const Point& rPosPixel ) { - return pEditView->IsWrongSpelledWordAtPos( rPosPixel, bMarkIfWrong ); + return pEditView->IsWrongSpelledWordAtPos( rPosPixel, /*bMarkIfWrong*/false ); } void OutlinerView::ExecuteSpellPopup( const Point& rPosPixel, Link<SpellCallbackInfo&,void> const * pStartDlg ) |