diff options
author | Christian Barth <Christian.Barth@zoho.com> | 2019-10-03 20:22:04 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2019-10-09 16:25:24 +0200 |
commit | 261fa8cdf4626c9785e0ca4776e44eab4b9222e0 (patch) | |
tree | ca2389706b771e891a553a6b413ab5e567ed60ae /accessibility | |
parent | a73cb32c7285343cbb30b4647e8e7e448eebbb02 (diff) |
tdf#114441 changed some sal_uLong to better fitting types
Change-Id: I114a6b028eb59a1ae38c31bc20439a35643fe972
Reviewed-on: https://gerrit.libreoffice.org/80159
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/extended/accessibleiconchoicectrl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/accessibleiconchoicectrl.cxx b/accessibility/source/extended/accessibleiconchoicectrl.cxx index ba0ec3c1e645..c16579694be2 100644 --- a/accessibility/source/extended/accessibleiconchoicectrl.cxx +++ b/accessibility/source/extended/accessibleiconchoicectrl.cxx @@ -72,7 +72,7 @@ namespace accessibility SvxIconChoiceCtrlEntry* pEntry = static_cast< SvxIconChoiceCtrlEntry* >( rVclWindowEvent.GetData() ); if ( pEntry ) { - sal_uLong nPos = getCtrl()->GetEntryListPos( pEntry ); + sal_Int32 nPos = getCtrl()->GetEntryListPos( pEntry ); Reference< XAccessible > xChild = new AccessibleIconChoiceCtrlEntry( *getCtrl(), nPos, this ); uno::Any aOldValue, aNewValue; aNewValue <<= xChild; @@ -96,7 +96,7 @@ namespace accessibility } if ( pEntry ) { - sal_uLong nPos = pCtrl->GetEntryListPos( pEntry ); + sal_Int32 nPos = pCtrl->GetEntryListPos( pEntry ); Reference< XAccessible > xChild = new AccessibleIconChoiceCtrlEntry( *pCtrl, nPos, this ); uno::Any aOldValue, aNewValue; aNewValue <<= xChild; |