diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-29 15:04:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-01 08:30:28 +0200 |
commit | 5e913234da65484778d53179ee2005aec01d0f0e (patch) | |
tree | 7532854c855220fd110f6340f5c9c8e53af117b9 /svx/source/dialog/checklbx.cxx | |
parent | 595f46344e18fd6275ff7b862269e4c131449591 (diff) |
loplugin:unuseddefaultparam in svx (part2)
Change-Id: I99e3d6137ec17e3fc782253c85e5fa4f1da4cec4
Diffstat (limited to 'svx/source/dialog/checklbx.cxx')
-rw-r--r-- | svx/source/dialog/checklbx.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx index ae321b006820..653d8f207fbb 100644 --- a/svx/source/dialog/checklbx.cxx +++ b/svx/source/dialog/checklbx.cxx @@ -78,10 +78,10 @@ void SvxCheckListBox::RemoveEntry( sal_uLong nPos ) } -void SvxCheckListBox::SelectEntryPos( sal_uLong nPos, bool bSelect ) +void SvxCheckListBox::SelectEntryPos( sal_uLong nPos ) { if ( nPos < GetEntryCount() ) - Select( GetEntry( nPos ), bSelect ); + Select( GetEntry( nPos ) ); } |