summaryrefslogtreecommitdiffstats
path: root/accessibility/source/standard/vclxaccessiblelist.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-11 08:41:02 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 09:48:17 +0200
commitfddb49383d99958ad065f1cd60acc5a70b873bfb (patch)
tree2ed3b41e18b36c15d329a6785a81c994fbcb5337 /accessibility/source/standard/vclxaccessiblelist.cxx
parentProperly init PropertyValue.Handle in InitPropertySequence (diff)
downloadcore-fddb49383d99958ad065f1cd60acc5a70b873bfb.tar.gz
core-fddb49383d99958ad065f1cd60acc5a70b873bfb.zip
loplugin: defaultparams
Change-Id: Ifc9fc93b0630674fa1f4ef78c3a2231855dc1db3
Diffstat (limited to 'accessibility/source/standard/vclxaccessiblelist.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessiblelist.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx
index c2bd0977fe2b..7b2dd3ed9d3d 100644
--- a/accessibility/source/standard/vclxaccessiblelist.cxx
+++ b/accessibility/source/standard/vclxaccessiblelist.cxx
@@ -791,7 +791,7 @@ void SAL_CALL VCLXAccessibleList::selectAccessibleChild( sal_Int32 nChildIndex )
{
checkSelection_Impl(nChildIndex,*m_pListBoxHelper,false);
- m_pListBoxHelper->SelectEntryPos( (sal_uInt16)nChildIndex, true );
+ m_pListBoxHelper->SelectEntryPos( (sal_uInt16)nChildIndex );
// call the select handler, don't handle events in this time
m_bDisableProcessEvent = true;
m_pListBoxHelper->Select();
@@ -850,7 +850,7 @@ void SAL_CALL VCLXAccessibleList::selectAllAccessibleChildren( ) throw (Runtime
{
sal_uInt16 nCount = m_pListBoxHelper->GetEntryCount();
for ( sal_uInt16 i = 0; i < nCount; ++i )
- m_pListBoxHelper->SelectEntryPos( i, true );
+ m_pListBoxHelper->SelectEntryPos( i );
// call the select handler, don't handle events in this time
m_bDisableProcessEvent = true;
m_pListBoxHelper->Select();