diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-06-16 14:36:06 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-29 07:25:44 +0000 |
commit | 497c589802a788de78af28ea88cec947b25355b3 (patch) | |
tree | 00d08d81fa59230420618164315302762fdbf85e /accessibility | |
parent | e57314f61f67b093510c5a8a8f34a62126ba8734 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/extended/accessibleiconchoicectrl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
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 ) { |