From 497c589802a788de78af28ea88cec947b25355b3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 16 Jun 2015 14:36:06 +0200 Subject: sal_uLong->sal_Int32 in SvtIconChoiceCtrl and drop the pass-by-reference param from GetSelected, nothing uses it Change-Id: I6d616a2b147912af9305410625af6e7afae34e59 Reviewed-on: https://gerrit.libreoffice.org/16312 Tested-by: Jenkins Reviewed-by: Noel Grandin --- accessibility/source/extended/accessibleiconchoicectrl.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'accessibility/source') diff --git a/accessibility/source/extended/accessibleiconchoicectrl.cxx b/accessibility/source/extended/accessibleiconchoicectrl.cxx index 1d512aa0631c..4847b25cbdb2 100644 --- a/accessibility/source/extended/accessibleiconchoicectrl.cxx +++ b/accessibility/source/extended/accessibleiconchoicectrl.cxx @@ -96,8 +96,7 @@ namespace accessibility SvxIconChoiceCtrlEntry* pEntry = static_cast< SvxIconChoiceCtrlEntry* >( rVclWindowEvent.GetData() ); if ( pEntry == NULL ) { - sal_uLong nPos=0; - pEntry = getCtrl()->GetSelectedEntry ( nPos ); + pEntry = getCtrl()->GetSelectedEntry(); } if ( pEntry ) { -- cgit